如何在 MySQL 中使用 now() 在字段中插入当前日期/时间?
在 MySQL 中,可以使用 now() 插入当前日期/时间。语法如下 −
insert into yourTableName values(now());
为了理解在表中插入当前日期/时间的上述概念,我们先创建一个表 −
mysql> create table CurrentDateTimeDemo −> ( −> YourTime datetime −> ); Query OK, 0 rows affected (0.58 sec)
使用 now() 插入当前日期/时间。查询如下 −
mysql> insert into CurrentDateTimeDemo values(now()); Query OK, 1 row affected (0.20 sec)
现在你可以检查当前日期/时间是否已插入 −
mysql> select *from CurrentDateTimeDemo;
以下输出显示已使用 now() 成功插入当前日期
+---------------------+ | YourTime | +---------------------+ | 2018-12-08 19:08:41 | +---------------------+ 1 row in set (0.00 sec)
广告