Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

Melhor solução de paginação usando SQL Server 2005?


Para uma tabela desse tamanho, use uma expressão de tabela comum (CTE) e ROW_NUMBER; use uma pequena função para calcular os registros para trazer de volta com base em @PageNumber e @PageSize variáveis ​​(ou como você quiser chamá-las). Exemplo simples de um de nossos procedimentos armazenados:
-- calculate the record numbers that we need

DECLARE @FirstRow INT, @LastRow INT
SELECT  @FirstRow   = ((@PageNumber - 1) * @PageSize) + 1,
        @LastRow    = ((@PageNumber - 1) * @PageSize) + @PageSize

;
WITH CTE AS
(
    SELECT [Fields]
           , ROW_NUMBER() OVER (ORDER BY [Field] [ASC|DESC]) as RowNumber 
    FROM [Tables]
    WHERE [Conditions, etc]
)
SELECT * 
       -- get the total records so the web layer can work out
       -- how many pages there are
       , (SELECT COUNT(*) FROM CTE) AS TotalRecords
FROM CTE
WHERE RowNumber BETWEEN @FirstRow AND @LastRow
ORDER BY RowNumber ASC