I have an Access97 database (unfortunately) and I am querying it over ODBC.
I want to construct a query that will return me J ordered rows starting at offset K. Rig
You can use TOP with Not In and a TOP subquery:
SELECT TOP n ... ID Not In (SELECT TOP k ...)
It will probably be faster than trying to number rows in Access