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.
私のシステムでは、ユーザーがコードを入力してポイントをアカウントに追加することができます。ユーザーが 1 週間以内に 10,000 ポイント以上交換した場合に通知を受け取ることを希望します。
これにはcronジョブが必要だと思うので、それを設定しました。クエリ時にこれを支援するために、ある種のmysql関数があるかどうか疑問に思いましたか?
ありがとう
cron コマンドは次のようになります。
mysql mydatabase -c "select username, sum(points) as points from redeemed where timestamp > subdate(now(), interval 7 day) group by 1"