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.
我有一个数据库表,我需要每 24 小时或我设置的任何时间清空一次。我不想删除表,只是清空。我想知道使用 PHP 执行此操作的最佳方法是什么?非常感谢您可以为我提供的任何方向。
您可以使用Event Scheduler来做到这一点。
查询可以是这样的:
DELETE FROM your_table WHERE time < NOW() - INTERVAL 24 HOUR