/ Published in: SQL
Select more than 1 row from Dual - useful for creating test data perhaps?
Expand |
Embed | Plain Text
SELECT * FROM DUAL CONNECT BY ROWNUM <= 42; -- Create 42 rows from DUAL;
You need to login to post a comment.
Select more than 1 row from Dual - useful for creating test data perhaps?
SELECT * FROM DUAL CONNECT BY ROWNUM <= 42; -- Create 42 rows from DUAL;
You need to login to post a comment.