I am trying to change the MySQL command separator, so I can create a procedure with several commands. However, the delimiter command does not seem to be recognized in MySQL 5.1.47. I tested it on MySQL 5.0.91 and it worked there.
DELIMITER
DELIMITER ;
I am trying to run this from phpmyadmin in both situations. Using 5.0.91 instead is not an option, because I need to use events ( CREATE EVENT).
Error message:
Is there a reason why it does not work, or is there an alternative to achieve the same thing (creating a procedure with multiple requests)?
source
share