Mysql
 sql >> Database >  >> RDS >> Mysql

stored procedure mysql:l'utilizzo di vars dichiarate in un'istruzione limit restituisce un errore

io uso qualcosa come:

SET @s = CONCAT('SELECT * FROM table limit  ', vLoopOrder ', ', vLoopLimit); 
PREPARE stmt1 FROM @s; 
EXECUTE stmt1; 
DEALLOCATE PREPARE stmt1;