Last Updated: February 25, 2016
·
1.956K
· ssokolow

SQL Pagination Without OFFSET

SQL Pagination Without OFFSET

A compromise solution for reasonably efficient pagination on databases like SQLite, MS SQL, Firebird, Oracle, and DB2 where OFFSET is either missing or merely an alias for "retrieve and immediately discard".

This is for situations which don't lend themselves to using a WHERE clause on your ORDER BY column.