如何在 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 表中,位于 StudentName 为 Gaurav 的 RegDate 中添加一天。
Advertisement