mysql 定时自动删除数据表

描述

自 MySQL5.1.6 起,增加了一个非常有特色的功能–事件调度器 (Event
Scheduler),可以用做定时执行某些特定任务(例如:删除记录、对数据进行汇总等等),来取代原先只能由操作系统的计划任务来执行的工作。更值得
一提的是 MySQL 的事件调度器可以精确到每秒钟执行一个任务,而操作系统的计划任务(如:Linux 下的 CRON 或 Windows 下的任务计划)只能精
确到每分钟执行一次。对于一些对数据实时性要求比较高的应用(例如:股票、赔率、比分等)就非常适合。

开启事件调度器

1、确认是否开启
SHOW VARIABLES LIKE ‘event_scheduler’;
2、开启命令
SET GLOBAL event_scheduler = ON;

创建事件 < 创建后默认开启 >

CREATE EVENT [IF NOT EXISTS] event_name ON SCHEDULE schedule
[ON COMPLETION [NOT] PRESERVE] [ENABLE | DISABLE] [COMMENT ‘comment’]

DO sql_statement;
例如:
1. 每分钟 (60S) 清空一次记录表

use database_name;
create event table_truncate on schedule every 60 second do truncate table operator_record_log;

2. 每 30 天 (2592000S) 清空 30 天前的所有记录,仅保留近 30 天数据

use database_name;
create event table_truncate on schedule every 2592000 second do delete from operator_record_log where create_date < DATE_SUB(CURDATE(),INTERVAL 30 DAY);

3. 指定时间将表清空

use database_name;
create event table_truncate on schedule at timestamp ‘2022-01-01 00:00:00’ do truncate table operator_record_log;

4. 每天定时清空

use database_name;
create event table_truncate on schedule every 1 day starts ‘2022-01-01 00:00:00’ do truncate table operator_record_log;

关闭事件

alter event event_name disable;

开启事件

alter event event_name enable;

删除事件

drop event if exists event_name;

查看事件

show events;