加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

MYSQL数据库mysql 让一个存储过程定时作业的代码

发布时间:2020-12-12 01:18:19 所属栏目:MySql教程 来源:网络整理
导读:《MYSQL数据库mysql 让一个存储过程定时作业的代码》要点: 本文介绍了MYSQL数据库mysql 让一个存储过程定时作业的代码,希望对您有用。如果有疑问,可以联系我们。 1、在mysql 中建立一个数据库 test1 语句:create database test1 2、创建表examinfo creat

《MYSQL数据库mysql 让一个存储过程定时作业的代码》要点:
本文介绍了MYSQL数据库mysql 让一个存储过程定时作业的代码,希望对您有用。如果有疑问,可以联系我们。

1、在mysql 中建立一个数据库 test1

语句:create database test1

2、创建表examinfo

create table examinfo(
id int auto_increment not null,
endtime datetime,
primary key(id)
);

3 插入数据:

insert into examinfo values('1','2011-4-23 23:26:50');

4 创建存储过程test

CREATE PROCEDURE test ()
BEGIN
update examinfo SET endtime = now() WHERE id = 1;
END;

5、 创建event e_test
代码如下:
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、运行查询结果即可出现想要的结果.

结果显示如下:
?原始数据:


过一段时间查询后的数据:
?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读