so suppose I have this query:
SELECT * FROM t WHERE j = k ORDER BY l
is there a way to have the query only return, for example the 20th to 40th records according to the ORDER BY statement rather than returning all the rows ordered by the ORDER BY statement?
Limit by 20 (the second one), starting from offset 20, the first.