Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何使用 cron 作业从给定的数据库表中删除一行,我可以直接使用我的 cPanel 中的 cron 作业命令行来执行此操作吗?我正在使用 MySQL 数据库
使用 MySQL 的事件调度器:
CREATE EVENT foo ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 3 HOUR DO DELETE FROM my_table WHERE id = 123