Quote Originally Posted by Mavyak
If you are using SQL Server, look into the ROW_Number() function.
or possibly SELECT * Skip 60000...

then there is always

SELECT ... FROM ...
WHERE [some key] NOT IN (SELECT TOP 6000 [some key FROM ...) which will probably take a while.

.02 Stan