How to create event inside store procedure?
This is what I been trying to do, and it tells me that I have a syntax error, only it doesn't tells me where.
-- --------------------------------------------------------------------------------
-- Routine DDL
-- Note: comments before and after the routine body will not be stored by the server
-- --------------------------------------------------------------------------------
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `update_leaderboard`()
BEGIN
CREATE EVENT update_leaderboard_event
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 minute
DO call update_leaderboard();
END
Edit: According to my MySql(last line) it should be possible:
Syntax”. You can create an event as part of a stored routine, but an event cannot be created by another event.
Edit2 found the problem:
Error 1576: Recursion of EVENT DDL statements is forbidden when body is present
But no solution yet, how do I do it then?
You cant create inside procedure. You need to define it separately.
Just check Mysql Event Scheduler
detail blog: http://goo.gl/6Hzjvg