一,借鉴【luo奔的蜗牛】
1.创建一张表
1 create table mytable ( 2 id int auto_increment not null, 3 name varchar(100) not null default '', 4 introduce text not null, 5 createtime timestamp not null, 6 constraint pk_mytable primary key(id) 7 )
2.创建存储过程
1 --创建存储过程,这里的存储过程主要提供给mysql的定时器event来调用去执行: 2 create procedure proc() 3 begin 4 insert into mytable (name,introduce,createtime) values ('周三','000',now()); 5 end;
紧接着创建mysql的定时器event:
create event if not exists eventJob
on schedule every 1 second
on completion PRESERVE
do call mypro();
这里设置为每一秒执行一次
至此所有的准备工作已经写完了,做完这些,mysql要想利用定时器必须的做准备工作,就是把mysql的定时器给开启了:
SET GLOBAL event_scheduler = 1; -- 启动定时器
SET GLOBAL event_scheduler = 0; -- 停止定时器
紧接着还要开启事件:
ALTER EVENT eventJob ON COMPLETION PRESERVE ENABLE; -- 开启事件
ALTER EVENT eventJob ON COMPLETION PRESERVE DISABLE; -- 关闭事件
SHOW VARIABLES LIKE '%sche%'; -- 查看定时器状态
至此,你去数据库里面的表mytable里面看下,系统会每隔一秒去插入一条数据,嘻嘻,任务完成了。
select * from mytable