alexandria-plsql-utils/demos/sql_util_pkg_demo.sql
2015-02-20 19:43:42 +01:00

13 lines
177 B
SQL
Executable File

-- make a number of rows
select *
from table(sql_util_pkg.make_rows (10))
-- make rows in specified range
select *
from table(sql_util_pkg.make_rows (10, 13))