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 字段添加一天?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!