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 checked the other questions and are not related to mine.
So, how to add the offset in Oracle 11g ?
You can do it easily on
12cby specifyingOFFSET.In
12c,To do the same on
11gand prior, you need to useROWNUMtwice,inner queryandouter queryrespectively.The same query in
11g,Here
OFFSETis 4.