mysql 事件调度

时间:2021-10-04 00:06:32

适用于mysql 5.1 及以后版本

1、查看是否开启

show variables like '%scheduler%'

2、查看进程

show processlist

3、事件调度器默认是关闭的,通过下面命令开启

set global event_scheduler=1

4、简单创建一个事件

create event test_1 on schedule every 5 second do insert into test(time,age) values(now(),1)

5、禁止或者删除

禁用:alter event test_1 disable

删除:drop event test_1