gpt4 book ai didi

php - 安排 MySQL 查询

转载 作者:行者123 更新时间:2023-11-29 06:35:44 25 4
gpt4 key购买 nike

如何使用 MySQL 调度程序安排查询运行(如果这是最好的方法)?我按照 link here 中的说明进行操作但我有点迷路了。

我想在我们拥有的特定数据库上每 30 分钟运行一次以下查询。

    update REQUESTS set status='expired' where status='pending' and date_sub(now(), interval 15 minute) > req_time;

最佳答案

delimiter //
CREATE EVENT IF NOT EXISTS your_event
ON SCHEDULE EVERY 30 MINUTE
STARTS '2014-07-25 12:00:00'
ON COMPLETION PRESERVE ENABLE
DO
update REQUESTS
set status='expired'
where status='pending'
and date_sub(now(), interval 15 minute) > req_time;
//

关于php - 安排 MySQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24960588/

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