借助 CURDATE() 和 NOW() 函数,我们可以在 MySQL 表的列中自动插入当前日期。
假设我们想要在表year_testing的OrderDate列中自动插入当前日期,以下查询将执行此操作 -
mysql> Insert into year_testing (OrderDate) Values(CURDATE()); Query OK, 1 row affected (0.11 sec) mysql> Select * from year_testing; +------------+ | OrderDate | +------------+ | 2017-10-28 | +------------+ 1 row in set (0.00 sec) mysql> Insert into year_testing (OrderDate) Values(NOW()); Query OK, 1 row affected, 1 warning (0.12 sec) mysql> Select * from year_testing; +------------+ | OrderDate | +------------+ | 2017-10-28 | | 2017-10-28 | +------------+ 2 rows in set (0.00 sec)
以上是如何在 MySQL 表的列中自动插入当前日期?的详细内容。更多信息请关注PHP中文网其他相关文章!