Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

11 Answers

up vote 78 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

share|improve this answer
3  
Why do you suggest avoiding SELECT even if you're selecting all columns? – Adam N May 26 '11 at 2:48
1  
I'm sure he used "*" because it was simpler to type and got the point across better than "col1, col2, ... colN" – rotard Mar 5 '12 at 20:42
As for why not to use it, SELECT * means that if the structure of the table changes, your query still runs, but gives different results. If a column is added, this might be useful (although you've still got to use it by name somewhere); if a column is deleted or renamed, it's better for your SQL to break visibly than code further down behaving oddly because a variable is uninitialised. – IMSoP Apr 12 at 9:05

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.

share|improve this answer
2  
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
2  
It's about time they added this to tSQL – JohnFx Jan 25 '12 at 14:51

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
share|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

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
share|improve this answer

For tables with more and large data columns, I prefer:

SELECT 
  tablename.col1,
  tablename.col2,
  tablename.col3,
  ...
FROM
(
  (
    SELECT
      col1
    FROM 
    (
      SELECT col1, ROW_NUMBER() OVER (ORDER BY col1 ASC) AS RowNum
      FROM tablename
      WHERE ([CONDITION])
    )
    AS T1 WHERE T1.RowNum BETWEEN [OFFSET] AND [OFFSET + LIMIT]
  )
  AS T2 INNER JOIN tablename ON T2.col1=tablename.col1
);

-

[CONDITION] can contain any WHERE clause for searching.
[OFFSET] specifies the start,
[LIMIT] the maximum results.

It has much better performance on tables with large data like BLOBs, because the ROW_NUMBER function only has to look through one column, and only the matching rows are returned with all columns.

share|improve this answer

The accepted answer already shows the available methods up until SQL Server 2008. As of SQL Server 2012 however, there is an additional option by using the new OFFSET and FETCH keywords.

SQL Server 2012

SELECT * 
FROM MyTable 
ORDER BY SomeColumn 
  OFFSET 5 ROW 
  FETCH NEXT 25 ROW ONLY
share|improve this answer

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
share|improve this answer

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.

share|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

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
share|improve this answer

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) 
share|improve this answer

I use this technique for pagination. I do not fetch all the rows. For example, if my page needs to display the top 100 rows I fetch only the 100 with where clause. The output of the SQL should have a unique key.

The table has the following:

ID, KeyId, Rank

The same rank will be assigned for more than one KeyId.

SQL is select top 2 * from Table1 where Rank >= @Rank and ID > @Id

For the first time I pass 0 for both. The second time pass 1 & 14. 3rd time pass 2 and 6....

The value of the 10th record Rank & Id is passed to the next

11  21  1
14  22  1
7   11  1
6   19  2
12  31  2
13  18  2

This will have the least stress on the system

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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