我们想要一个函数,它给出一个三字节类型为bytea
的参数(由gen_random_bytes
扩展名的函数pgcrypto
生成),该函数返回一个随机的6位数字整数(介于0和999999之间)。 6位整数应该保留传递给函数的参数给出的随机性。
答案 0 :(得分:0)
如果是3个字节,请取6个最后一个字符,前置'x'
,转换为bitstring,然后转换为int:
select ('x' || right(gen_random_bytes(3)::text, 6))::bit(24)::int;
更多细节也有类似问题:What's the easiest way to represent a bytea as a single integer in PostgreSQL?
答案 1 :(得分:0)
我可能过于复杂,但我需要确保字符串中只有n个数字。允许重复数字。
SELECT string_agg(shuffle('0123456789')::char, '')
FROM generate_series(1, 6);
使用another answer中提供的随机播放功能,为方便起见,我在这里复制了
create or replace function shuffle(text)
returns text language sql as $$
select string_agg(ch, '')
from (
select substr($1, i, 1) ch
from generate_series(1, length($1)) i
order by random()
) s
$$;