借助 DATE_ADD() 函數,我們可以在表格的 DATETIME 欄位中新增一天。
mysql> Select StudentName, RegDate, Date_ADD(RegDate, INTERVAL +1 day) AS 'NEXT DAY' from testing where StudentName = 'gaurav'; +-------------+---------------------+---------------------+ | StudentName | RegDate | NEXT DAY | +-------------+---------------------+---------------------+ | Gaurav | 2017-10-29 08:48:33 | 2017-10-30 08:48:33 | +-------------+---------------------+---------------------+ 1 row in set (0.00 sec)
以上查詢將在名為「testing」的 MySQL 表中的 RegDate(其中 StudentName 為 Gaurav)中新增一天。
以上是如何在 MySQL 查詢中為 DATETIME 欄位新增一天?的詳細內容。更多資訊請關注PHP中文網其他相關文章!