Using the DUAL table, how can I get a list of numbers from 1 to 100?
Another interesting solution in ORACLE PL/SQL:
SELECT LEVEL n FROM DUAL CONNECT BY LEVEL <= 100;