If I want to delete some event I need to query something like \"DROP EVENT IF EXISTS eventname\" But I can\'t find the command of deleting all the events at one t
\"DROP EVENT IF EXISTS eventname\"
I think you have to use the INFORMATION_SCHEMA.EVENTS table to gather all the active events and then construct and run the DROP EVENT statements.
INFORMATION_SCHEMA.EVENTS