Home > Database > Mysql Tutorial > body text

MySQL定时执行任务_MySQL

WBOY
Release: 2016-06-01 13:06:24
Original
960 people have browsed it

查看event是否开启

show variables like '%sche%';
Copy after login

将事件计划开启
set global event_scheduler =1;
Copy after login

创建存储过程test
CREATE PROCEDURE test ()  BEGIN  update examinfo SET endtime = now() WHERE id = 14;  END; 
Copy after login
创建event e_test
create event if not exists e_test  on schedule every 30 second  on completion preserve  do call test();
Copy after login

每隔30秒将执行存储过程test。

关闭事件任务

alter event e_test ON   COMPLETION PRESERVE DISABLE;
Copy after login

开户事件任务
alter event e_test ON   COMPLETION PRESERVE ENABLE;
Copy after login



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template