Is there any way to select the numbers (integers) that are included between two numbers with SQL in Oracle; I don\'t want to create PL/SQL procedure or function.
Fo
This trick with Oracle's DUAL table also works:
SQL> select n from 2 ( select rownum n from dual connect by level <= 10) 3 where n >= 3; N ---------- 3 4 5 6 7 8 9 10