PostgreSQL: 一种用于生成随机字符串的方法

create or replace function random_string(integer)

returns text as

$body$

         select array_to_string(array(select substring('0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' FROM (ceil(random()*62))::int FOR 1) FROM generate_series(1, $1)), '');

$body$

language sql volatile;      





posted @ 2016-01-19 08:30  拿走不谢  阅读(6583)  评论(0)    收藏  举报