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
Or you can use Between
Select Column1 from dummy_table where Column2 Between 3 and 10