Welcome to Yumao′s Blog.
Mysql 每天凌晨执行存储过程
, 2013年02月04日 , Linux , 评论 在〈Mysql 每天凌晨执行存储过程〉中留言功能已關閉 ,

我想按照某条件每天凌晨进行数据库清理操作
所以就有了以下内容 嗯嗯

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DELIMITER $$
SET GLOBAL event_scheduler = 1
$$
create procedure clear()
begin
delete from vpnuser where exdate<sysdate();
end
$$
create event clear_table
on schedule every 1 day
starts date_add(date(curdate()+1),interval 1 minute)
on completion preserve
do call clear();
$$
ALTER EVENT clear_table ON
COMPLETION PRESERVE ENABLE;
关键字:,

评论已关闭