데이터베이스/PL/SQL
PL/SQL DBMS_RANDOM
왕왕왕왕
2015. 11. 14. 13:21
declare
begin
//dbms_random.value(max_value,min_value)
//round(소수점 출력수);
dbms_output.put_line(round(dbms_random.value(50,0),0));
end;
/