I have the following SQL query:
select ID, COLUMN1, COLUMN2 from (select ID, COLUMN1, COLUMN2, row_number() over (order by 2 DESC) NO from A_TABLE) whe
Here you will get the limited record from the oracle database without the usage of rownum
rownum
select * from ( select ,column1,column2,row_number() over (order by columnName) as rnum from table_name) where rnum between 5 and 10;