Created
January 21, 2015 17:44
-
-
Save markoradinovic/67e24b9c74a1a9b995c3 to your computer and use it in GitHub Desktop.
Oracle Paging
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 ( SELECT * FROM MAILBOX_MESSAGE order by MESSAGE_ID ) a | |
where rownum <= 10 ) | |
where rnum >= 6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment