Is there any way in MS SQL Server to get the results starting at a given offset? For example, in another SQL server, it's possible to do:
SELECT * FROM MyTable OFFSET 50 LIMIT 25
to get results 50-74. This construct does not appear to exist in MS SQL.
How can I accomplish this without loading all the rows I don't care about? Thanks!