Oracle DUAL table
The following example returns the current operating system date and time
SELECT SYSDATE FROM dual
The following example generates numbers between start_value and end_value
SELECT :start_value + LEVEL -1 n
FROM dual
CONNECT BY LEVEL <= :end_value - :start_value + 1