码迷,mamicode.com
首页 > 数据库 > 详细

mysql定时器

时间:2020-01-10 12:18:26      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:定时器   mysql   lte   color   测试   null   time   begin   alter   

#查看数据库的event功能是否开启 因为在数据库中的event默认是关闭的

show VARIABLES LIKE %sche%;

 

#如果value显示为off或者0说明是关闭的,这时我们需要手动打开定时器

SET GLOBAL event_scheduler = 1;

 

#创建测试表

create table test
(
id int(11) not null auto_increment primary key,
time datetime not null
) engine=innodb default charset=utf8;

 

#这是判断我们要执行的文本是否存在,如果存在,就删除这个文本(本质就是我们的定时器定时执行的 代码块)

delimiter //
drop procedure if exists test_proce//
#创建event要调用的存储过程test_proce (其实就是创建文本/代码块。)
create procedure test_proce()
begin
#向test表里面添加当前时间(代码块中的执行命令 我选择的是一个添加,因为容易看到效果)
insert into test(time) values(now());
end//
delimiter ;

 

#创建事件test_event(其作用:每隔一秒自动调用test_proce()存储过程)

create event test_event
#这句话是设置时间多长时间执行一次
on schedule every 1 second
on completion preserve disable
#这个是指定要执行的代码块,在上面已经定义过了
do call test_proce();

 

#2020-01-10 11:10:00启动定时器,每隔12小时执行一次

create event test_event2
on schedule every 12 hour starts timestamp 2020-01-10 11:10:00 
on completion preserve disable
do call test_proce();

 

#开启事件test_event 因为创建的事件的启用属性默认是关闭的,我们将他的属性设置为开启
#就可以使用当前定时器 test_event 是要执行的事件名字

alter event test_event on completion preserve enable;

 

#关闭事件 test_event 是要关闭的事件名字

alter event test_event on completion preserve disable;

 

整体流程简介:


  1.开启mysql数据库的event功能。
  2.创建一个类似于要执行的代码块。
  3.创建一个事件,这个事件中有诸多属性,可以设置执行时间间隔以及指定执行的代码块。
  4.因为创建的事件的执行属性默认是关闭的,所以我们要去修改这个事件的属性为开启。

mysql定时器

标签:定时器   mysql   lte   color   测试   null   time   begin   alter   

原文地址:https://www.cnblogs.com/rong0912/p/12175466.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!