-
-
Save fomigo/b46a6e7035cdf80f4504ea36175d1478 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 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