Is there any way in SQL Server to get the results starting at a given offset? For example, in another SQL server, it's possible to do:

SELECT * FROM MyTable OFFSET 50 LIMIT 25

to get results 50-74. This construct does not appear to exist in SQL Server.

How can I accomplish this without loading all the rows I don't care about? Thanks!

link|improve this question

77% accept rate
feedback

8 Answers

up vote 44 down vote accepted

I would avoid using SELECT *. Specify columns you actually want even though it may be all of them.

MS SQL 2005+

SELECT col1, col2 
FROM (
    SELECT col1, col2, ROW_NUMBER() OVER (ORDER BY ID) AS RowNum
    FROM MyTable
) AS MyDerivedTable
WHERE MyDerivedTable.RowNum BETWEEN @startRow AND @endRow

MS SQL 2000

Efficiently Paging Through Large Result Sets in SQL Server 2000

A More Efficient Method for Paging Through Large Result Sets

link|improve this answer
1  
Why do you suggest avoiding SELECT even if you're selecting all columns? – Adam N May 26 '11 at 2:48
I'm sure he used "*" because it was simpler to type and got the point across better than "col1, col2, ... colN" – rotard Mar 5 at 20:42
feedback

This is one way (SQL2000)

SELECT * FROM
(
    SELECT TOP (@pageSize) * FROM
    (
        SELECT TOP (@pageNumber * @pageSize) *
        FROM tableName 
        ORDER BY columnName ASC
    ) AS t1 
    ORDER BY columnName DESC
) AS t2 
ORDER BY columnName ASC

and this is another way (SQL 2005)

;WITH results AS (
    SELECT 
        rowNo = ROW_NUMBER() OVER( ORDER BY columnName ASC )
        , *
    FROM tableName 
) 
SELECT * 
FROM results
WHERE rowNo between (@pageNumber-1)*@pageSize+1 and @pageNumber*@pageSize
link|improve this answer
Just to clarify on the first one... (@pageSize) is a placeholder here for the actual value. You'll have to do 'TOP 25' specifically; SQL Server 2000 doesn't support variables in a TOP clause. This makes it a pain involving dynamic SQL. – Cowan Oct 9 '08 at 22:25
2  
That solution for SQL2000 doesn't work for the last page in the result set, unless the total number of rows happens to be a multiple of the page size. – Bill Karwin Oct 20 '08 at 18:40
feedback

For SQL Server 2012 you can use the enhanced ORDER BY clause.

SELECT  *
FROM     MyTable 
ORDER BY OrderingColumn ASC 
OFFSET  50 ROWS 
FETCH NEXT 25 ROWS ONLY 

Though it remains to be seen how well performing this option will be.

link|improve this answer
1  
It's now available in SQL Server Compact 4.0 --> msdn.microsoft.com/en-us/library/gg699618(v=sql.110).aspx – bgever May 6 '11 at 9:29
1  
It's about time they added this to tSQL – JohnFx Jan 25 at 14:51
feedback

Yeah, that's a bit crappy in Microsoft SQL Server. You can use ROW_NUMBER() function to get what you want:

SELECT *
FROM (SELECT ROW_NUMBER() OVER(ORDER BY id) RowNr, id FROM tbl) t
WHERE RowNr BETWEEN 10 AND 20
link|improve this answer
feedback

You should be careful when using the row_number() OVER (ORDER BY) statement as performane is quite poor. Same goes for using Common Table Expressions with row_number() that is even worse. I'm using the following snippet that has proven to be slightly faster then using a table variable with an identity to provide the page number.

DECLARE @Offset INT = 120000
DECLARE @Limit INT = 10

DECLARE @ROWCOUNT INT = @Offset+@Limit
SET ROWCOUNT @ROWCOUNT

SELECT * FROM MyTable INTO #ResultSet
WHERE MyTable.Type = 1

SELECT * FROM
(
    SELECT *, ROW_NUMBER() OVER(ORDER BY SortConst ASC) As RowNumber FROM
    (
    	SELECT *, 1 As SortConst FROM #ResultSet
    ) AS ResultSet
) AS Page
WHERE RowNumber BETWEEN @Offset AND @ROWCOUNT

DROP TABLE #ResultSet
link|improve this answer
feedback

Depending on your version ou cannot do it directly, but you could do something hacky like

select top 25 *
from ( 
  select top 75 *
  from   table 
  order by field asc
) a 
order by field desc

where 'field' is the key.

link|improve this answer
3  
That solution for SQL2000 doesn't work for the last page in the result set, unless the total number of rows happens to be a multiple of the page size. – Bill Karwin Oct 20 '08 at 18:45
feedback

In SqlServer2005 you can do the following:

DECLARE @Limit INT DECLARE @Offset INT SET @Offset = 120000 SET @Limit = 10

SELECT 
    * 
FROM
(
   SELECT 
       row_number() 
   OVER 
      (ORDER BY column) AS rownum, column2, column3, .... columnX
   FROM   
     table
) AS A
WHERE 
 A.rownum BETWEEN (@Offset) AND (@Offset + @Limit)
link|improve this answer
feedback

I've been searching for this answer for a while now (for generic queries) and found out another way of doing it on SQL Server 2000+ using ROWCOUNT and cursors and without TOP or any temporary table.

Using the SET ROWCOUNT [OFFSET+LIMIT] you can limit the results, and with cursors, go directly to the row you wish, then loop 'till the end.

So your query would be like this:

SET ROWCOUNT 75 -- (50 + 25)
DECLARE MyCursor SCROLL CURSOR FOR SELECT * FROM pessoas
OPEN MyCursor
FETCH ABSOLUTE 50 FROM MyCursor -- OFFSET
WHILE @@FETCH_STATUS = 0 BEGIN
    FETCH next FROM MyCursor
END
CLOSE MyCursor
DEALLOCATE MyCursor
SET ROWCOUNT 0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.