Possible Duplicate:
Row Offset in MS SQL Server
I want to select a range from x1 to x2. Just like you can select the top results:
SELECT TOP X * FROM TABLE
SELECT TOP 5 * FROM tUsers
But I would like to select middle results. So if I want results 10-20 is there a way to query that?
SELECT 10-20 * FROM TABLE?