如何在 MySQL 查询中将一天加到 DATETIME 域?
借助 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。
广告