Puoi usare the Row_Number()
funzione. Viene utilizzato come segue:
SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName
FROM Users
Da cui produrrà un set di risultati con un RowID
campo che puoi utilizzare per sfogliare.
SELECT *
FROM
( SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName
FROM Users
) As RowResults
WHERE RowID Between 5 AND 10
ecc