当前位置:Gxlcms > mysql > mysql定时删除当前时间前分钟的数据_MySQL

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

时间:2021-07-01 10:21:17 帮助过:5人阅读

bitsCN.com

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

Sql代码

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 ;

bitsCN.com

人气教程排行