DROP EVENT
Remove a scheduled event from the server. This command stops the event from executing and deletes its definition from the system tables.
Syntax
DROP EVENT [IF EXISTS] event_nameDescription
Examples
DROP EVENT myevent3;DROP EVENT IF EXISTS myevent3;
Query OK, 0 rows affected, 1 warning (0.01 sec)
SHOW WARNINGS;
+-------+------+-------------------------------+
| Level | Code | Message |
+-------+------+-------------------------------+
| Note | 1305 | Event myevent3 does not exist |
+-------+------+-------------------------------+See also
Last updated
Was this helpful?

