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.
什么是“MySQL 事件”?它的目的是什么?它与“作业调度程序”有何不同?
许多关于 SO 和 MySQL 文档的帖子都描述了如何实现 MySQL 事件,但我只是对它们的目的感兴趣。
scheduled tasksMySQL 事件提供了和的替代方案cron jobs。
scheduled tasks
cron jobs
事件可用于创建备份、删除陈旧的记录、聚合报告数据等。与在特定条件下执行的标准触发器不同,事件是随着时间的推移而触发的对象,有时也称为时间触发器。
请参阅下面的链接,这里解释了所有内容:
http://phpmaster.com/working-with-mysql-events/