MySQL数据库的正确DateTime格式是什么?
MySQL数据库的正确日期时间格式如下-
‘YYYY-MM-DD HH:M:SS’
让我们首先创建一个表-
mysql> create table DemoTable797 ( ArrivalDatetime datetime );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable797 values(NOW()); mysql> insert into DemoTable797 values('2016-12-21 12:50:34'); mysql> insert into DemoTable797 values('2017-03-01 17:40:21');
使用select语句显示表中的所有记录-
mysql> select *from DemoTable797;
这将产生以下输出。我们NOW()
在表中插入第一个值时使用了。将NOW()
显示当前日期和时间-
+---------------------+ | ArrivalDatetime | +---------------------+ | 2019-08-01 21:40:42 | | 2016-12-21 12:50:34 | | 2017-03-01 17:40:21 | +---------------------+ 3 rows in set (0.00 sec)