当前位置:Gxlcms > 数据库问题 > mysql 让一个存储过程定时作业的代码(转)

mysql 让一个存储过程定时作业的代码(转)

时间:2021-07-01 10:21:17 帮助过:2人阅读

代码如下:
CREATE EVENT if not exists e_test
on schedule every 30 second
on completion preserve
do call test();



6、查看event是否开启: show variables like ‘%sche%‘;
将事件计划开启: set global event_scheduler=1;
关闭事件任务: alter event e_test ON COMPLETION PRESERVE DISABLE;
开户事件任务: alter event e_test ON COMPLETION PRESERVE ENABLE;

7、运行查询结果即可出现想要的结果。

结果显示如下:
 原始数据:
技术分享
过一段时间查询后的数据:
 技术分享

mysql 让一个存储过程定时作业的代码(转)

标签:

人气教程排行