dbms_random.value : DBMS_RANDOM « System Packages « Oracle PL / SQL






dbms_random.value

   
SQL>
SQL>  set serverout on
SQL>  exec dbms_output.put_line( dbms_random.value );
.02384074069949541946799357018112732833

PL/SQL procedure successfully completed.

SQL>
SQL>  set serverout on
SQL>  exec dbms_output.put_line( dbms_random.value );
.9204517146492220886865737108916710535

PL/SQL procedure successfully completed.

SQL> --

   
    
  








Related examples in the same category

1.ROUND a DBMS_RANDOM.VALUE
2.This script illustrates the use of the DBMS_RANDOM package.
3.Call dbms_random.normal to get a random number
4.Use dbms_random.string to create random string
5.Random string with dbms_random.string
6.Seed a random value with dbms_random.seed
7.Round a random value from dbms_random.value
8.trunc a random value from dbms_random.value
9.mod(abs(dbms_random.random),50000)+1
10.Insert random numbers into a table
11.Insert random value to table