欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

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
相关标签: mysql