Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:38:39Z http://stackoverflow.com/feeds/question/216673 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000 7 Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 Bill Karwin 2008-10-19T17:05:16Z 2009-08-27T14:16:39Z <p>When I worked on the <a href="http://framework.zend.com/manual/en/zend.db.html" rel="nofollow">Zend Framework's database component</a>, we tried to abstract the functionality of the <code>LIMIT</code> clause supported by MySQL, PostgreSQL, and SQLite. That is, creating a query could be done this way:</p> <pre><code>$select = $db-&gt;select(); $select-&gt;from('mytable'); $select-&gt;order('somecolumn'); $select-&gt;limit(10, 20); </code></pre> <p>When the database supports <code>LIMIT</code>, this produces an SQL query like the following:</p> <pre><code>SELECT * FROM mytable ORDER BY somecolumn LIMIT 10, 20 </code></pre> <p>This was more complex for brands of database that don't support <code>LIMIT</code> (that clause is not part of the standard SQL language, by the way). If you can generate row numbers, make the whole query a derived table, and in the outer query use <code>BETWEEN</code>. This was the solution for Oracle and IBM DB2. Microsoft SQL Server 2005 has a similar row-number function, so one can write the query this way:</p> <pre><code>SELECT z2.* FROM ( SELECT ROW_NUMBER OVER(ORDER BY id) AS zend_db_rownum, z1.* FROM ( ...original SQL query... ) z1 ) z2 WHERE z2.zend_db_rownum BETWEEN @offset+1 AND @offset+@count; </code></pre> <p>However, Microsoft SQL Server 2000 doesn't have the <code>ROW_NUMBER()</code> function.</p> <p>So my question is, can you come up with a way to emulate the <code>LIMIT</code> functionality in Microsoft SQL Server 2000, solely using SQL? Without using cursors or T-SQL or a stored procedure. It has to support both arguments for <code>LIMIT</code>, both count and offset. Solutions using a temporary table are also not acceptable.</p> <p><strong>Edit:</strong></p> <p>The most common solution for MS SQL Server 2000 seems to be like the one below, for example to get rows 50 through 75:</p> <pre><code>SELECT TOP 25 * FROM ( SELECT TOP 75 * FROM table ORDER BY BY field ASC ) a ORDER BY field DESC; </code></pre> <p>However, this doesn't work if the total result set is, say 60 rows. The inner query returns 60 rows because that's in the top 75. Then the outer query returns rows 35-60, which doesn't fit in the desired "page" of 50-75. Basically, this solution works unless you need the last "page" of a result set that doesn't happen to be a multiple of the page size.</p> <p><strong>Edit:</strong></p> <p>Another solution works better, but only if you can assume the result set includes a column that is unique:</p> <pre><code>SELECT TOP n * FROM tablename WHERE key NOT IN ( SELECT TOP x key FROM tablename ORDER BY key ); </code></pre> <p><strong>Conclusion:</strong></p> <p>No general-purpose solution seems to exist for emulating <code>LIMIT</code> in MS SQL Server 2000. A good solution exists if you can use the <code>ROW_NUMBER()</code> function in MS SQL Server 2005.</p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/216693#216693 12 Answer by Brent Ozar for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 Brent Ozar 2008-10-19T17:20:04Z 2008-10-19T17:20:04Z <p>I've seen that question before from clients, and this was the best explanation I've seen of what your options are and what the impacts are:</p> <p><a href="http://www.codeproject.com/KB/aspnet/PagingLarge.aspx" rel="nofollow">http://www.codeproject.com/KB/aspnet/PagingLarge.aspx</a></p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/216740#216740 3 Answer by hangy for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 hangy 2008-10-19T17:58:40Z 2008-10-19T17:58:40Z <p><a href="http://stackoverflow.com/questions/187998/row-offset-in-ms-sql-server">http://stackoverflow.com/questions/187998/row-offset-in-ms-sql-server</a></p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/720280#720280 1 Answer by a0p for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 a0p 2009-04-06T04:28:26Z 2009-04-06T04:28:26Z <p>SELECT TOP n * FROM tablename WHERE key NOT IN ( SELECT TOP x key FROM tablename ORDER BY key DESC );</p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/838329#838329 0 Answer by for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 2009-05-08T05:12:48Z 2009-05-08T05:12:48Z <p>hello this is my query : </p> <p><strong>select top 1 * from ( select top 11 * from NoProdRev order by CodeBien asc ) order by CodeBien desc;</strong></p> <p>i get this error message :</p> <p><strong>Server: Msg 156, Level 15, State 1, Line 7 Incorrect syntax near the keyword 'order'.</strong></p> <p>i don't know where this error is,could anyone tell how can i make it work? thank you in advance</p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/857117#857117 1 Answer by grr for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 grr 2009-05-13T10:06:24Z 2009-05-13T10:06:24Z <p>When you need LIMIT only, ms sql has the equivalent TOP keyword, so that is clear. When you need LIMIT with OFFSET, you can try some hacks like previously described, but they all add some overhead, i.e. for ordering one way and then the other, or the expencive NOT IN operation. I think all those cascades are not needed. The cleanest solution in my oppinion would be just use TOP without offset on the SQL side, and then seek to the required starting record with the appropriate client method, like mssql_data_seek in php. While this isn't a pure SQL solution, I think it is the best one because it doesn't add any overhead (the skipped-over records will not be transferred on the network when you seek past them, if that is what worries you).</p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/864410#864410 0 Answer by for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 2009-05-14T16:37:16Z 2009-05-14T16:37:16Z <p>hello if the number of rows returned by the query(<code>**select top a from (select top b**)</code>) is not a multiple of <strong>b</strong>,i mean <strong>a mod b&lt;>0</strong>,the number remains <strong>a</strong> how can i solve this problem? and how to use <code>ORDER BY ASC</code> to sort the results thanks in advance</p> http://stackoverflow.com/questions/216673/emulate-mysql-limit-clause-in-microsoft-sql-server-2000/1032469#1032469 1 Answer by Florian for Emulate MySQL LIMIT clause in Microsoft SQL Server 2000 Florian 2009-06-23T13:07:47Z 2009-06-23T13:07:47Z <p>Here is another solution which only works in Sql Server 2005 and newer because it uses the except statement. But I share it anyway. If you want to get the records 50 - 75 write:</p> <pre><code>select * from ( SELECT top 75 COL1, COL2 FROM MYTABLE order by COL3 ) as foo except select * from ( SELECT top 50 COL1, COL2 FROM MYTABLE order by COL3 ) as bar </code></pre>