How to delete all events in MySQL

后端 未结 3 2100
离开以前
离开以前 2021-02-20 02:40

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

3条回答
  •  失恋的感觉
    2021-02-20 03:08

    To construct a drop events query, you can do something like this:

    select concat('drop event if exists ', event_name, ';') from information_schema.events;
    

提交回复
热议问题