VastbaseG100

基于openGauss内核开发的企业级关系型数据库。

Menu

DBMS_RANDOM

  • 用于提供一个内置的随机数生成器。
函数名 参数类型 结果类型 描述
initialize integer null 用一个种子值初始化dbms_random包
normal null double precision 生成服从正态分布的一组随机数
random null binary_integer 生成一个随机整数
seed integer,text null 重置一个种子值
string text/integer text 生成一个随机字符串
terminate null null 关闭dbms_random包
value double precision/double precison double precison,double precison 生成一个0和1之间的随机数
select dbms_random.initialize(123456);
select dbms_random.normal();
select dbms_random.random();
select dbms_random.seed(‘asda’);
select dbms_random.string(‘x’,9);
select dbms_random.terminate();
select dbms_random.value(100,2200);
select dbms_random.value();