-
-
Save dalethestirling/5813276 to your computer and use it in GitHub Desktop.
Revisions
-
ssokolow created this gist
Dec 23, 2009 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ -- Reasonably efficient pagination without OFFSET -- SQLite version (Adapted from MS SQL syntax) -- Source: http://www.phpbuilder.com/board/showpost.php?p=10376515&postcount=6 SELECT foo, bar, baz, quux FROM table WHERE oid NOT IN ( SELECT oid FROM table ORDER BY title ASC LIMIT 50 ) ORDER BY title ASC LIMIT 10