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.1 で日付の最後の 1 秒を取得したいと考えています。たとえば、私のテーブルには「日付」という列があります。日付の最後の秒で別の日時列を設定したい。
何かのようなもの:
update <TABLE> set datetime = DATETIME(YEAR(date), MONTH(date), DAY(date), 23,59,59)
それは可能ですか?
UPDATE tbl SET datetime = DATE(date) + INTERVAL 1 DAY - INTERVAL 1 SECOND