Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to do something like :

SELECT * FROM table LIMIT 10,20

or

SELECT * FROM table LIMIT 10 OFFSET 10

but using SQLServer

The only solution I found looks like overkill:

SELECT * FROM ( 
  SELECT *, ROW_NUMBER() OVER (ORDER BY name) as row FROM sys.databases 
 ) a WHERE row > 5 and row <= 10

I also found:

SELECT TOP 10 * FROM stuff;

... but it's not what I want to do since I can't specify the starting limit.

Is there another way for me to do that ?

Also, just curious, is there a reason why doesn't MSserver support the LIMIT function or something similar? I don't want to be mean, but that really sounds like something a DBMS needs ... If it does, then I'm sorry for being so ignorant! I've been working with MySQL and SQL+ for the past 5 years so...

share|improve this question
Using a CTE for ROW_NUMBER() and limiting with TOP for the width of the range and a WHERE condition for a bound of the range is best I've been able to achieve. I've also noticed much better performance if the TOP clause uses a literal instead of variable – Jodrell Jul 4 '12 at 15:18

8 Answers

up vote 30 down vote accepted

The LIMIT clause is not part of standard SQL. It's supported as a vendor extension to SQL by MySQL, PostgreSQL, and SQLite.

Other brands of database may have similar features (e.g. TOP in Microsoft SQL Server), but these don't always work identically.

It's hard to use TOP in Microsoft SQL Server to mimic the LIMIT clause. There are cases where it just doesn't work.

The solution you showed, using ROW_NUMBER() is available in Microsoft SQL Server 2005 and later. This is the best solution (for now) that works solely as part of the query.

Another solution is to use TOP to fetch the first count + offset rows, and then use the API to seek past the first offset rows.

See also:

share|improve this answer

as you found, this is the preferred sql server method:

SELECT * FROM ( 
  SELECT *, ROW_NUMBER() OVER (ORDER BY name) as row FROM sys.databases 
 ) a WHERE a.row > 5 and a.row <= 10
share|improve this answer
Why the a after the inner select? I assume you are giving the inner select an alias, but then you never seem to use it... Should you then do a.row instead of just row? – Lucas Sep 24 '12 at 18:38
2  
@Lucas, you are required to put an alias after the ( ) derived table, but it will let it go if you then forget to use it to refer to the columns. I fixed it though... – KM. Sep 24 '12 at 20:12
thanks, i found that out the hard way (tried to leave the alias out). – Lucas Sep 25 '12 at 0:29

For SQL Server 2012 + you can use.

SELECT  *
FROM     sys.databases
ORDER BY name 
OFFSET  5 ROWS 
FETCH NEXT 5 ROWS ONLY 
share|improve this answer

Unfortunately, the ROW_NUMBER() is the best you can do. It's actually more correct, because the results of a limit or top clause don't really have meaning without respect to some specific order. But it's still a pain to do.

Update: Sql Server 2012 adds a limit -like feature via OFFSET and FETCH keywords.

share|improve this answer
@Joel: Can you explain why ROW_NUMBER() is unable to number the rows the way they come out of ORDER BY? I've always wondered why the "OVER (ORDER BY name)" is mandatory, but I guess there is a good reason for it. Or at least a reason. – Tomalak Jun 9 '09 at 19:31
2  
because there is no such thing as order without an order by clause. You get whatever order the records were available to the server, and that could change from query request to query request. – Joel Coehoorn Jun 9 '09 at 19:40
1  
@marcgg: I've never read any indication that Microsoft plans to implement LIMIT. Even if they do have such a plan, closed-source vendors tend not to pre-announce features. It would certainly be a helpful feature, but we don't know how much work it would be to implement, given their code. – Bill Karwin Jun 9 '09 at 20:42
3  
If you don't want to repeat yourself in the ORDER BY clause, use the ROW_NUMBER() alias rather than the original set of columns. – Peter Radocchia Jun 9 '09 at 22:33
1  
@Tomalak: As far as SQL Server is concerned, the ordering used to calculate ROW_NUMBER() is completely unrelated to the ordering of the resultset. That's why you have to specify them separately. – LukeH Jun 10 '09 at 16:39
show 2 more comments
WITH Rows AS
(
    SELECT
              ROW_NUMBER() OVER (ORDER BY [dbo].[SomeColumn]) [Row]
            , *
        FROM
              [dbo].[SomeTable]
)
SELECT TOP 10
          *
     FROM
         Rows
    WHERE Row > 10

I believe is functionaly equivalent to

SELECT * FROM SomeTable LIMIT 10 OFFSET 10 ORDER BY SomeColumn

and the best performing way I know of doing it in TSQL


If there are very many rows you may get better performance using a temp table instead of a CTE.

share|improve this answer
SELECT TOP 10 *
FROM TABLE
WHERE IDCOLUMN NOT IN (SELECT TOP 10 IDCOLUMN FROM TABLE)

Should give records 11-20. Probably not too efficient if incrementing to get further pages, and not sure how it might be affected by ordering. Might have to specify this in both WHERE statements.

share|improve this answer

How about this?

SET ROWCOUNT 10 

SELECT TOP 20 *
FROM sys.databases
ORDER BY database_id DESC

It gives you the last 10 rows of the first 20 rows. One drawback is that the order is reversed, but, at least it's easy to remember.

share|improve this answer
2  
What if there are only 14 rows in the table? You get rows 14 down to 5, which is not the same as rows returned by LIMIT 10 OFFSET 10 (should be rows 14 down to 11). – Bill Karwin Jun 9 '09 at 19:36
select * from (select id,name,ROW_NUMBER() OVER (ORDER BY id  asc) as row
from tableName1) tbl1
where tbl1.row>=10 and tbl1.row<=15

Will print rows from 10 to 15.

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.