I want to create an Event that will run each day at midnight + 1 second, I've check a lot of threads explaining the Event and all yet I don't understand why I have an Syntax error in MySql V.6.2
CREATE EVENT TestEvents
ON SCHEDULE
EVERY 1 DAY
STARTS (TIMESTAMP(CURRENT_DATE) + INTERVAL 1 DAY + INTERVAL 1 SECOND)
DO
BEGIN
CALL sp_SchedulerTask_CreateInsertSalesCsvFile();
CALL sp_SchedulerTask_CreateUpdateSalesCsvFile();
END;
Thanks for the answers