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

mysql定时删除当前时间前分钟的数据
2013-01-31      0 个评论       作者:上官车月
收藏    我要投稿
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 ;  
原文地址:https://www.cnblogs.com/u0mo5/p/4453330.html