gpt4 book ai didi

mysql - 如何进行延迟的 DELETE SQL 查询?

转载 作者:行者123 更新时间:2023-11-29 00:07:26 25 4
gpt4 key购买 nike

我需要在进行 DELETE 查询后 14 天从表中删除行。是否可以使用 MySQL 执行此操作?

最佳答案

您可以使用内置的 MySQL Event Scheduler安排查询或存储例程运行 at an arbitrary point in time :

This is an example of a minimal CREATE EVENT statement:

CREATE EVENT myevent
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR
DO
UPDATE myschema.mytable SET mycol = mycol + 1;

请注意,the Event Scheduler is disabled by default .

关于mysql - 如何进行延迟的 DELETE SQL 查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26888033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com