Click here to Skip to main content
15,885,366 members
Articles / Database Development / SQL Server
Alternative
Tip/Trick

Efficient paging using SQL script

Rate me:
Please Sign up or sign in to vote.
4.57/5 (4 votes)
28 Dec 2011CPOL 8.2K   2   3
Hi, what about such solution?DECLARE @pageNumber INTDECLARE @rowsOnPage INTSET @rowsOnPage=5SET @pageNumber=2DECLARE @totalItemsToSelect INTSET @totalItemsToSelect=@rowsOnPage * @pageNumberSELECT TOP (@rowsOnPage) * FROM MainTrans WHERE ID IN( SELECT TOP...
Hi, what about such solution?

SQL
DECLARE @pageNumber INT
DECLARE @rowsOnPage INT

SET @rowsOnPage=5
SET @pageNumber=2

DECLARE @totalItemsToSelect INT
SET @totalItemsToSelect=@rowsOnPage * @pageNumber

SELECT TOP (@rowsOnPage) * FROM MainTrans WHERE ID IN
(
    SELECT TOP (@totalItemsToSelect) ID FROM MainTrans ORDER BY ID DESC
) ORDER BY ID ASC

it looks much shorter.

Thanks,
Kiryl

P.S. of course this solution works only if you have identity column. in my opinion identity column is a must for paging, moreover this approach works for any database not only for MS SQL

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralReason for my vote of 4 I think this script works well, but ... Pin
Robby Tendean28-Dec-11 16:12
Robby Tendean28-Dec-11 16:12 
GeneralReason for my vote of 3 The alternative is pretty solid if y... Pin
Helluin28-Dec-11 6:01
Helluin28-Dec-11 6:01 
GeneralActually: 1. TOP does not work on Oracle (at least versions ... Pin
Pablo Aliskevicius28-Dec-11 4:38
Pablo Aliskevicius28-Dec-11 4:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.