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 5.0.88次の基準に基づいてレコードを選択する必要があります。
MySQL 5.0.88
timestamp_last_update must have been set after the beginning of the current month
私はDateFormat現在見ていますが、正しく動作させることができません。
DateFormat
これが MySQL で実行できるかどうかについて、誰かが情報を提供できますか?
ありがとう!
次のようなものを採用する必要があります
WHERE timestamp_last_update > CAST(DATE_FORMAT(NOW() ,'%Y-%m-01') as DATE)
また
WHERE timestamp_last_update >= CAST(DATE_FORMAT(NOW() ,'%Y-%m-02') as DATE)
「現在の月の初めの後」の意味に応じて(つまり、最初の日をカウントする必要があるかどうか)。