Paging SQL Server 2005 Results

前端 未结 6 2023
攒了一身酷
攒了一身酷 2020-11-28 04:53

How do I page results in SQL Server 2005?

I tried it in SQL Server 2000, but there was no reliable way to do this. I\'m now wondering if SQL Server 2005 has any buil

6条回答
  •  星月不相逢
    2020-11-28 05:05

    You can use the Row_Number() function. Its used as follows:

    SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName
    FROM Users
    

    From which it will yield a result set with a RowID field which you can use to page between.

    SELECT * 
    FROM 
        ( SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName
          FROM Users 
        ) As RowResults
    WHERE RowID Between 5 AND 10
    

    etc

提交回复
热议问题