Created
October 22, 2014 10:02
-
-
Save aidoskz/a55e14ebbd356bb1c3d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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