mysql定时删除当前时间前分钟的数据

mysql定时删除当前时间前分钟的数据
2013-01-31      0个评论       作者:上官车月
收藏    mysql定时删除当前时间前分钟的数据我要投稿
mysql定时删除当前时间前分钟的数据
 
Sql代码  www.2cto.com  
SET GLOBAL event_scheduler = ON;  
delimiter $$  
drop event if exists e_wom_stat;  
create event e_wom_stat  
on schedule   
EVERY 1 day  
 STARTS '2013-01-01 03:00:00'  
ON COMPLETION  PRESERVE ENABLE  
do  
begin  
  delete from t_wom_random_num where time<(CURRENT_TIMESTAMP()+INTERVAL -25 MINUTE);  
end $$  
delimiter ;  
上一篇:MySQL定时任务event,储存过程(定时删除指定时间前90天指定表的数据)


下一篇:Oracle数据库的闪回操作(查询指定时间的数据、恢复数据)