Mysql
 sql >> Base de données >  >> RDS >> Mysql

exécuter deux procédures en utilisant un événement

Je pense vous voulez ceci :

CREATE EVENT EVENT_NOTIFICATION
ON SCHEDULE
EVERY 1 DAY STARTS '2013-10-15 15:42:00'
COMMENT 'Insert Notification'
DO CALL
sp_Notification();

CREATE EVENT EVENT_NOTIFICATION
ON SCHEDULE
EVERY 1 DAY STARTS '2013-10-15 15:42:00'
COMMENT 'Insert Notification'
DO CALL
SP_notificationStatus();

Vous pouvez également créer une nouvelle procédure qui appelle les deux, puis la planifier une fois.