MySQL Forums
Forum List  »  Stored Procedures

Re: Variable in LIMIT clause
Posted by: Peter Brawley
Date: March 16, 2009 07:21PM

Wei,
delimiter //
drop procedure if exists limitTest //
create procedure limitTest( idin int )
begin
  set @sql = concat('select * from mytable order by id limit ', idin );
  prepare stmt from @sql;
  execute stmt;
  drop prepare stmt;
end // 
delimiter ;
call limittest(5);
Please stop whingeing.

PB
http://www.artfulsoftware.com

Options: ReplyQuote


Subject
Views
Written By
Posted
45011
June 01, 2005 07:13PM
18482
June 13, 2005 06:34PM
14668
July 12, 2005 03:59PM
12671
July 13, 2005 05:57PM
10829
July 13, 2005 05:58AM
10493
July 12, 2005 04:07PM
12138
July 15, 2005 05:37AM
8578
July 13, 2005 10:09AM
8000
July 15, 2005 05:45AM
8702
March 24, 2006 04:48PM
6604
June 15, 2006 07:23PM
6423
April 04, 2007 08:56PM
6772
April 11, 2007 01:07PM
15021
April 11, 2007 03:56PM
6847
May 02, 2007 11:28AM
5937
March 16, 2009 05:58PM
Re: Variable in LIMIT clause
6547
March 16, 2009 07:21PM
7907
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.