Skip to content

Instantly share code, notes, and snippets.

@aidoskz
Created October 22, 2014 10:02
Show Gist options
  • Select an option

  • Save aidoskz/a55e14ebbd356bb1c3d0 to your computer and use it in GitHub Desktop.

Select an option

Save aidoskz/a55e14ebbd356bb1c3d0 to your computer and use it in GitHub Desktop.
select * from
( select a.*, ROWNUM rnum from
( <your_query_goes_here, with order by> ) a
where ROWNUM <= :MAX_ROW_TO_FETCH )
where rnum >= :MIN_ROW_TO_FETCH;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment