I have this query with mysql :
select * from table1 LIMIT 10,20
How can I do this with Microsoft sql ?
|
1
|
I have this query with mysql :
How can I do this with Microsoft sql ?
|
|||
|
|
|
|
Starting SQL SERVER 2005, you can do this...
or something like this for 2000 and below versions...
|
||||||||||
|
|
|
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 If you're using Microsoft SQL Server 2005 or later, you have a
You can also write this as a common table expression as shown in @Leon Tayson's answer. |
||
|
|
|
Clunky, but it'll work.
MSSQL's omission of a LIMIT clause is criminal, IMO. You shouldn't have to do this kind of kludgy workaround. |
||||||||||
|
|
|
|
||||
|
|
|
This is a multi step approach that will work in SQL2000.
|
|||
|
|
|
|
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)
|
||
|
|
|
|
limit 10, 20 is not standard SQL |
||||
|
|
|
USE AdventureWorks; GO DECLARE @TOTALROWS int WITH OrderedOrders AS (
) SELECT * FROM OrderedOrders WHERE RowNumber BETWEEN 10 AND 20; This is not working any help |
||
|
|
|
|
Is the same as
Here's an article about implementing Limit in MsSQL Its a nice read, specially the comments. |
||