Re: Variable in LIMIT clause
I completely agree with how important/sweet this is/would be. I'm using stored procedure's with PHP right now and simply cannot find a clean way of doing my record set paging without the use of a dynamic LIMIT clause.
That's not to say we have it any worse--SQl Server doesn't have an easy way either, requiring the following:
--Pass in @RowMin and @RowMax as parameters--
-- columns being selected --
FROM (SELECT ROW_NUMBER() OVER
-- conditional statements --
AS RowNumber, vw_VehicleData.* FROM vw_VehicleData WHERE Vehicle_Year BETWEEN @YearLow AND @YearHigh, ETC
WHERE RowNumber between @RowMin AND @RowMax
Easy? no way.
Having this functionality would put us light years ahead of the big guys, and would make record set paging a breeze.
Please add it!
Subject
Views
Written By
Posted
43915
June 01, 2005 07:13PM
18318
June 13, 2005 06:34PM
14517
July 12, 2005 03:59PM
12513
July 13, 2005 05:57PM
10646
July 13, 2005 05:58AM
10331
July 12, 2005 04:07PM
11976
July 15, 2005 05:37AM
8437
July 13, 2005 10:09AM
7817
July 15, 2005 05:45AM
8506
March 24, 2006 04:48PM
6460
June 15, 2006 07:23PM
6265
April 04, 2007 08:56PM
Re: Variable in LIMIT clause
6613
April 11, 2007 01:07PM
14787
April 11, 2007 03:56PM
6700
May 02, 2007 11:28AM
5772
March 16, 2009 05:58PM
6369
March 16, 2009 07:21PM
7737
April 29, 2009 05:31PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.