Somethin like this?

DELIMITER $$

DROP PROCEDURE IF EXISTS `cantidad` $$
CREATE PROCEDURE `cantidad` (in n int )

for i in 0..n loop
    insert into temp values(i);
  end loop;

  select * from temp;

END $$

DELIMITER ;

Thanks
-- 
View this message in context: 
http://www.nabble.com/function-procedure-error%21-tp15875760p15878725.html
Sent from the MySQL - General mailing list archive at Nabble.com.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to