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
One way to generate numbers from range is to use XMLTABLE('start to end'):
XMLTABLE('start to end')
SELECT column_value FROM XMLTABLE('3 to 10');
DBFiddle Demo