If you know how many records you want to skip, you can do something like this:
SELECT *
FROM myTable x
WHERE x.ID NOT IN (SELECT Top 10 id FROM myTable ORDER BY ....)
ORDER BY ...
You can then exclude entries that you do not want.
If you know the total number of records you want to return, you can do the following:
SELECT Top 50 *
FROM myTable x
WHERE x.ID NOT IN (SELECT Top 10 id FROM myTable ORDER BY ....)
ORDER BY ...
Taryn source
share