SELECT ... FROM ....
WHERE myID NOT IN
(SELECT TOP 10 myID FROM ... ORDER BY ...)
rankfield)
ORDER BY ...
May not apply in this casesortfield
Note that your sorted order could, but (if you wish) be different than your ranked order.
Edit: Another idea: If you already knew how many TOTAL rows were there, you could do (assuming 1000 rows):
SELECT TOP 990 ... FROM .... ORDER BY ... sortfield DESC
Just flip the sort, and take the remaining portion.
Of course, if you still wanted the results in the original order, you'd have to do something silly like:
SELECT ...
FROM (SELECT TOP 990 ... FROM .... ORDER BY sortfield DESC)
ORDER BY sortfield ASC
