ALTER EVENT reset_monthly
ON SCHEDULE
EVERY 1 MONTH
STARTS '2019-01-01 00:00:00'
COMMENT 'Descriptive comment'
DO
TRUNCATE sequence_code_os;
This event fails to delete all rows of sequence_code_os monthly. Why ?
ALTER EVENT reset_monthly
ON SCHEDULE
EVERY 1 MONTH
STARTS '2019-01-01 00:00:00'
COMMENT 'Descriptive comment'
DO
TRUNCATE sequence_code_os;
This event fails to delete all rows of sequence_code_os monthly. Why ?