The LIMIT escape clause can occur in a query at the point where an OFFSET/FETCH FIRST clause can appear.
See The result offset and fetch first clauses for more information.
{ LIMIT rowCount [ OFFSET startRow ] }
The rowCount is a non-negative integer that specifies the number of rows to return. If rowCount is 0, all rows from startRow forward are returned.
The startRow is a non-negative number that specifies the number of rows to skip before returning results.
OFFSET startRow FETCH NEXT rowCount ROWS ONLY
-- return the first two rows of sorted table t SELECT * FROM t ORDER BY a { LIMIT 2 } -- return two rows of sorted table t, starting with the eleventh row SELECT * FROM t ORDER BY a { LIMIT 2 OFFSET 10 }