mysql定时删除当前时间前分钟的数据_MySQL
程序员文章站
2022-03-03 19:26:43
...
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
end $$
delimiter ;
bitsCN.com