MySQL Forums
Forum List  »  Stored Procedures

Re: Variable in LIMIT clause
Posted by: Joss
Date: July 12, 2005 03:59PM

Hi there,

I was actually looking for the same use of "LIMIT". I found a workaround, it might not be the best but it works.

create procedure limitTest(IN nbRowsToFetch int)
begin

SET SQL_SELECT_LIMIT = nbRowsToFetch;

select * from mytable;

SET SQL_SELECT_LIMIT = DEFAULT;

end //

But i'm still waiting to be able to use the "LIMIT" with n argument.....

Enjoy,

Joss.

Options: ReplyQuote


Subject
Views
Written By
Posted
44266
June 01, 2005 07:13PM
18378
June 13, 2005 06:34PM
Re: Variable in LIMIT clause
14570
July 12, 2005 03:59PM
12569
July 13, 2005 05:57PM
10710
July 13, 2005 05:58AM
10392
July 12, 2005 04:07PM
12045
July 15, 2005 05:37AM
8491
July 13, 2005 10:09AM
7882
July 15, 2005 05:45AM
8588
March 24, 2006 04:48PM
6514
June 15, 2006 07:23PM
6315
April 04, 2007 08:56PM
6676
April 11, 2007 01:07PM
14880
April 11, 2007 03:56PM
6755
May 02, 2007 11:28AM
5838
March 16, 2009 05:58PM
6430
March 16, 2009 07:21PM
7805
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.