转载自iVictor,原文链接:
http://www.cnblogs.com/ivictor/p/5028368.html
一、MySQL中如何表示当前时间?
其实,表达方式还是蛮多的,汇总如下:
CURRENT_TIMESTAMP
CURRENT_TIMESTAMP()
NOW()
LOCALTIME
LOCALTIME()
LOCALTIMESTAMP
LOCALTIMESTAMP()
二、关于TIMESTAMP和DATETIME的比较
一个完整的日期格式如下:YYYY-MM-DD HH:MM:SS[.fraction],它可分为两部分:date部分和time部分,其中,date部分对应格式中的“YYYY-MM-DD”,time部分对应格式中的“HH:MM:SS[.fraction]”。对于date字段来说,它只支持date部分,如果插入了time部分的内容,它会丢弃掉该部分的内容,并提示一个warning。
如下所示:
复制代码
复制代码
mysql> create table test(id int,hiredate date);
Query OK, 0 rows affected (0.01 sec)
mysql> insert into test values(1,‘20151208000000’);
Query OK, 1 row affected (0.00 sec)
mysql> insert into test values(1,‘20151208104400’);
Query OK, 1 row affected, 1 warning (0.01 sec)
mysql> show warning;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘warning’ at line 1
mysql> select * from test;
±—–±———–+
| id | hiredate |
±—–±———–+
| 1 | 2015-12-08 |
| 1 | 2015-12-08 |
±—–±———–+
2 rows in set (0.00 sec)
复制代码
复制代码
注:第一个没提示warning的原因在于它的time部分都是0
TIMESTAMP和DATETIME的相同点:
1> 两者都可用来表示YYYY-MM-DD HH:MM:SS[.fraction]类型的日期。
TIMESTAMP和DATETIME的不同点