Created
March 29, 2011 17:06
-
-
Save subbu/892767 to your computer and use it in GitHub Desktop.
This file contains 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 p.id, name, LENGTH(body) AS len | |
FROM ( | |
SELECT id | |
FROM projects | |
ORDER BY id | |
LIMIT 150000, 10 | |
) o | |
JOIN projects p | |
ON p.id = o.id | |
ORDER BY p.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment