show/hide this revision's text 3 added 117 characters in body
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
show/hide this revision's text 2 More fun ideas
SELECT ... FROM ....
WHERE myID NOT IN 
    (SELECT TOP 10 myID FROM ... ORDER BY ...)
ORDER BY ...

Does

May not apply in this syntax work case, but if you already knew how many TOTAL rows were there, you could do (assuming 1000 rows):

SELECT TOP 990 ... FROM .... ORDER BY ... DESC

Just flip the sort, and take the remaining portion.

Of course, if you still wanted the results in Jet?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
show/hide this revision's text 1
SELECT ... FROM ....
WHERE myID NOT IN 
    (SELECT TOP 10 myID FROM ... ORDER BY ...)
ORDER BY ...

Does this syntax work in Jet?