Last active
February 22, 2016 08:27
-
-
Save nasermirzaei89/ae58118a785c083b68b5 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 *, ROW_NUMBER() OVER (ORDER BY "order" ASC) AS row_number FROM myschema.mytable) AS foo WHERE row_number > 200 AND row_number <= 210 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment