I have this query with mysql :

select * from table1 LIMIT 10,20

How can I do this with Microsoft sql ?

link|improve this question

feedback

10 Answers

up vote 12 down vote accepted

Starting SQL SERVER 2005, you can do this...

USE AdventureWorks;
GO
WITH OrderedOrders AS
(
    SELECT SalesOrderID, OrderDate,
    ROW_NUMBER() OVER (ORDER BY OrderDate) AS 'RowNumber'
    FROM Sales.SalesOrderHeader 
) 
SELECT * 
FROM OrderedOrders 
WHERE RowNumber BETWEEN 10 AND 20;

or something like this for 2000 and below versions...

SELECT TOP 10 * FROM (SELECT TOP 20 FROM Table ORDER BY Id) ORDER BY Id DESC
link|improve this answer
I edited this only to apply code-formatting to the code. – Bill Karwin Mar 2 '09 at 20:05
1  
The 2nd query fails if you have e.g. 14 rows in the table. It gives you rows 5 through 14, but you want rows 11 through 14. In general, it fails for the last "page" of a result, unless the total rows are a multiple of that "page" size. – Bill Karwin Mar 2 '09 at 20:13
You're right... haven't tested it :) – Leon Tayson Mar 2 '09 at 20:14
I struggled quite a bit trying to emulate LIMIT in MS SQL Server when I was developing the Zend Framework. :-) – Bill Karwin Mar 2 '09 at 20:17
Such a simple thing needs to be made so difficult by MS yet again! – Martin Apr 14 '11 at 10:56
feedback

This is almost a duplicate of a question I asked in October: http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000

If you're using Microsoft SQL Server 2000, there is no good solution. Most people have to resort to capturing the result of the query in a temporary table with a IDENTITY primary key. Then query against the primary key column using a BETWEEN condition.

If you're using Microsoft SQL Server 2005 or later, you have a ROW_NUMBER() function, so you can get the same result but avoid the temporary table.

SELECT t1.*
FROM (
    SELECT ROW_NUMBER OVER(ORDER BY id) AS row, t1.*
    FROM ( ...original SQL query... ) t1
) t2
WHERE t2.row BETWEEN @offset+1 AND @offset+@count;

You can also write this as a common table expression as shown in @Leon Tayson's answer.

link|improve this answer
ROW_NUMBER() OVER (ORDER BY) gets points for being valid in ANSI SQL:2003, although support in DBMSs other than SQL Server is very spotty. And it's pretty clunky of course... – bobince Mar 2 '09 at 22:39
@bobince: It turns out Oracle, Microsoft SQL Server 2005, IBM DB2, and PostgreSQL 8.4 all support window functions. That covers an huge majority of the SQL market. Support is only spotty if you use MySQL, SQLite or an old version of the DB's above. – Bill Karwin Mar 17 '10 at 15:34
feedback

Clunky, but it'll work.

SELECT TOP 10 * FROM table WHERE id NOT IN (SELECT TOP 10 id FROM table ORDER BY id) FROM table ORDER BY id

MSSQL's omission of a LIMIT clause is criminal, IMO. You shouldn't have to do this kind of kludgy workaround.

link|improve this answer
Do you have another suggestion to bypass this? – Bigballs Mar 2 '09 at 20:00
I did a lot of Googling the last time I had to deal with MSSQL and this was the best solution I found. Not pleasant, but it works. – ceejayoz Mar 2 '09 at 20:05
This solution works only if the result set includes a column that is unique. It's not a general solution to mimic LIMIT for any query. – Bill Karwin Mar 2 '09 at 20:09
I'm in a similar quandary right now... However, in my case I'm hosed... It's even more criminal when so called 'expert' dba's decide that an unique key in unnecessary in a table... ANY table... Don't even bring up the subject of foreign keys and constraints! – Andrew Rollings Mar 2 '09 at 20:10
@Bill Karwin - Good point. – ceejayoz Mar 2 '09 at 20:12
show 1 more comment
feedback
SELECT *
FROM   (
       SELECT TOP 20
              t.*, ROW_NUMBER() OVER (ORDER BY field1) AS rn
       FROM   table1 t
       ) to
WHERE rn > 10
link|improve this answer
I expect this is the best solution. +1 – Bill Karwin Mar 2 '09 at 20:25
Well, I just checked, SQL Server turned out to be smart enough to stop on ROW_NUMBER() conditions, if there is an indexed column in ORDER BY clause. – Quassnoi Mar 2 '09 at 20:36
feedback

This is a multi step approach that will work in SQL2000.

-- Create a temp table to hold the data
CREATE TABLE #foo(rowID int identity(1, 1), myOtherColumns)

INSERT INTO #foo (myColumns) SELECT myData order By MyCriteria

Select * FROM #foo where rowID > 10
link|improve this answer
feedback

If i remember correctly (it's been a while since i dabbed with SQL Server) you may be able to use something like this: (2005 and up)

SELECT
    *
   ,ROW_NUMBER() OVER(ORDER BY SomeFields) AS [RowNum]
FROM SomeTable
WHERE RowNum BETWEEN 10 AND 20
link|improve this answer
feedback

limit 10, 20 is not standard SQL

link|improve this answer
No, but it's tremendously useful SQL. What's your point? – ceejayoz Mar 2 '09 at 20:14
@cherouvim: Your statement is true, but it does not help to answer the question. – Bill Karwin Mar 2 '09 at 20:20
feedback

USE AdventureWorks;

GO

DECLARE @TOTALROWS int

WITH OrderedOrders AS

(

SELECT SalesOrderID, OrderDate,
ROW_NUMBER() OVER (ORDER BY OrderDate) AS 'RowNumber'
FROM Sales.SalesOrderHeader 
SET @TOTALROWS = @@rowcount

)

SELECT * FROM OrderedOrders WHERE RowNumber BETWEEN 10 AND 20;

This is not working any help

link|improve this answer
feedback

Syntactically MySQL LIMIT query is something like this:

SELECT * FROM table LIMIT OFFSET, ROW_COUNT

This can be translated into Microsoft SQL Server like

SELECT * FROM 
(
    SELECT TOP #{OFFSET+ROW_COUNT} *, ROW_NUMBER() OVER (ORDER BY (SELECT 1)) AS rnum 
    FROM table
) a
WHERE rnum > OFFSET

Now your query select * from table1 LIMIT 10,20 will be like this:

SELECT * FROM 
(
    SELECT TOP 30 *, ROW_NUMBER() OVER (ORDER BY (SELECT 1)) AS rnum 
    FROM table1
) a
WHERE rnum > 10 
link|improve this answer
feedback
SELECT TOP 10 * FROM table;

Is the same as

SELECT * FROM table LIMIT 0,10;

Here's an article about implementing Limit in MsSQL Its a nice read, specially the comments.

link|improve this answer
Thanks, but I want the record between 10 and 20, there's a way to do it? – Bigballs Mar 2 '09 at 19:57
this only ever gets the rows from the start of the result set... – nasty pasty Nov 3 '09 at 4:08
feedback

Your Answer

 
or
required, but never shown

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