Last active
December 18, 2015 10:29
-
-
Save razbakov/5768511 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 mod(num,PAGE_SIZE) as row, ceil(num/PAGE_SIZE) as page | |
FROM (SELECT *, @rownum:=@rownum + 1 AS num FROM users, (SELECT @rownum:=0) r ORDER BY username) d | |
WHERE d.userid=141414 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment