How to add an offset in a \"select\" query in Oracle 11g. I only know how to add the limit by e.g rownum <= 5 this question is not a duplicate, I already che
rownum <= 5
You can use ROW_NUMBER function for that.
Maybe this helps:
SELECT * FROM(SELECT t.*, ROW_NUMBER() OVER (ORDER BY ...) rn -- whatever ordering you want FROM your_table t ) WHERE rn >= ... -- your offset
Hope that helps