Normally we use the TSQL TOP to get first number of rows of data like this:
SELECT TOP 10 * FROM myTable;
I am not sure if there is any way to get the next 10 and next 10, ... till to the end, just something paging. I cannot figure out. May be CTE statements?