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 作业),它将每 24 小时将 mysql 表中的一个字段重置为零。我希望它为每个用户重置字段,而不仅仅是特定的人。不幸的是,我对 cron 作业一无所知,但也许我什至不需要使用它们。我非常不确定如何解决这个问题。谢谢您的帮助!
使用 MySql 事件调度程序本身呢?
http://dev.mysql.com/doc/refman/5.6/en/events-overview.html
创建一个连接到 mysql 表并执行更新查询的 python 脚本。
创建一个每天运行 1 次的 cron 作业,该作业执行:
python updateValue.py
这很容易,也是我能想到的最好方法。
crontab 参数看起来像:
0 0 * * * python updateValue.py