Skip to content Skip to sidebar Skip to footer

Create An Event Inside A Procedure - Sql

I need to create an event inside a procedure, I read somewhere that it's possible but I don't know the syntax. I'm trying: CREATE PROCEDURE DUMMY_PROCEDURE() BEGIN CREATE event

Solution 1:

You can't create an event inside procedure body. See this http://www.peregrinesalon.com/wp-content/uploads/2009/03/mysql-stored-procedures.pdf


Post a Comment for "Create An Event Inside A Procedure - Sql"