Is there any way in SQL Server to get the results starting at a given offset? For example, in another type of SQL database, it\'s possible to do:
SELECT * FR
Depending on your version ou cannot do it directly, but you could do something hacky like
select top 25 * from ( select top 75 * from table order by field asc ) a order by field desc
where 'field' is the key.