Mysql中有关Datetime和Timestamp的使用总结
一、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> 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的不同点:
1> 两者的存储方式不一样
对于timestamp,它把客户端插入的时间从当前时区转化为utc(世界标准时间)进行存储。查询时,将其又转化为客户端当前时区进行返回。
而对于datetime,不做任何改变,基本上是原样输入和输出。
下面,我们来验证一下
首先创建两种测试表,一个使用timestamp格式,一个使用datetime格式。
mysql> create table test(id int,hiredate timestamp); query ok, 0 rows affected (0.01 sec) mysql> insert into test values(1,'20151208000000'); query ok, 1 row affected (0.00 sec) mysql> create table test1(id int,hiredate datetime); query ok, 0 rows affected (0.01 sec) mysql> insert into test1 values(1,'20151208000000'); query ok, 1 row affected (0.00 sec) mysql> select * from test; +------+---------------------+ | id | hiredate | +------+---------------------+ | 1 | 2015-12-08 00:00:00 | +------+---------------------+ 1 row in set (0.01 sec) mysql> select * from test1; +------+---------------------+ | id | hiredate | +------+---------------------+ | 1 | 2015-12-08 00:00:00 | +------+---------------------+ 1 row in set (0.00 sec)
两者输出是一样的。
其次修改当前会话的时区
mysql> show variables like '%time_zone%'; +------------------+--------+ | variable_name | value | +------------------+--------+ | system_time_zone | cst | | time_zone | system | +------------------+--------+ 2 rows in set (0.00 sec) mysql> set time_zone='+0:00'; query ok, 0 rows affected (0.00 sec) mysql> select * from test; +------+---------------------+ | id | hiredate | +------+---------------------+ | 1 | 2015-12-07 16:00:00 | +------+---------------------+ 1 row in set (0.00 sec) mysql> select * from test1; +------+---------------------+ | id | hiredate | +------+---------------------+ | 1 | 2015-12-08 00:00:00 | +------+---------------------+ 1 row in set (0.01 sec)
上述“cst”指的是mysql所在主机的系统时间,是中国标准时间的缩写,china standard time ut+8:00
通过结果可以看出,test中返回的时间提前了8个小时,而test1中时间则不变。这充分验证了两者的区别。
2> 两者所能存储的时间范围不一样
timestamp所能存储的时间范围为:'1970-01-01 00:00:01.000000' 到 '2038-01-19 03:14:07.999999'。
datetime所能存储的时间范围为:'1000-01-01 00:00:00.000000' 到 '9999-12-31 23:59:59.999999'。
总结:timestamp和datetime除了存储范围和存储方式不一样,没有太大区别。当然,对于跨时区的业务,timestamp更为合适。
三、关于timestamp和datetime的自动初始化和更新
首先,我们先看一下下面的操作
mysql> create table test(id int,hiredate timestamp); query ok, 0 rows affected (0.01 sec) mysql> insert into test(id) values(1); query ok, 1 row affected (0.00 sec) mysql> select * from test; +------+---------------------+ | id | hiredate | +------+---------------------+ | 1 | 2015-12-08 14:34:46 | +------+---------------------+ 1 row in set (0.00 sec) mysql> show create table test\g *************************** 1. row *************************** table: test create table: create table `test` ( `id` int(11) default null, `hiredate` timestamp not null default current_timestamp on update current_timestamp ) engine=innodb default charset=latin1 1 row in set (0.00 sec)
看起来是不是有点奇怪,我并没有对hiredate字段进行插入操作,它的值自动修改为当前值,而且在创建表的时候,我也并没有定义“show create table test\g”结果中显示的“ default current_timestamp on update current_timestamp”。
其实,这个特性是自动初始化和自动更新(automatic initialization and updating)。
自动初始化指的是如果对该字段(譬如上例中的hiredate字段)没有显性赋值,则自动设置为当前系统时间。
自动更新指的是如果修改了其它字段,则该字段的值将自动更新为当前系统时间。
它与“explicit_defaults_for_timestamp”参数有关。
默认情况下,该参数的值为off,如下所示:
mysql> show variables like '%explicit_defaults_for_timestamp%'; +---------------------------------+-------+ | variable_name | value | +---------------------------------+-------+ | explicit_defaults_for_timestamp | off | +---------------------------------+-------+ 1 row in set (0.00 sec)
下面我们看看官档的说明:
by default, the first timestamp column has both default current_timestamp and on update current_timestamp if neither is specified explicitly。
很多时候,这并不是我们想要的,如何禁用呢?
1. 将“explicit_defaults_for_timestamp”的值设置为on。
2. “explicit_defaults_for_timestamp”的值依旧是off,也有两种方法可以禁用
1> 用default子句该该列指定一个默认值
2> 为该列指定null属性。
如下所示:
mysql> create table test1(id int,hiredate timestamp null); query ok, 0 rows affected (0.01 sec) mysql> show create table test1\g *************************** 1. row *************************** table: test1 create table: create table `test1` ( `id` int(11) default null, `hiredate` timestamp null default null ) engine=innodb default charset=latin1 1 row in set (0.00 sec) mysql> create table test2(id int,hiredate timestamp default 0); query ok, 0 rows affected (0.01 sec) mysql> show create table test2\g *************************** 1. row *************************** table: test2 create table: create table `test2` ( `id` int(11) default null, `hiredate` timestamp not null default '0000-00-00 00:00:00' ) engine=innodb default charset=latin1 1 row in set (0.00 sec)
在mysql 5.6.5版本之前,automatic initialization and updating只适用于timestamp,而且一张表中,最多允许一个timestamp字段采用该特性。从mysql 5.6.5开始,automatic initialization and updating同时适用于timestamp和datetime,且不限制数量。
参考:
1. http://dev.mysql.com/doc/refman/5.6/en/datetime.html
2. http://dev.mysql.com/doc/refman/5.6/en/timestamp-initialization.html
到此这篇关于mysql中有关datetime和timestamp的使用总结的文章就介绍到这了,更多相关mysql datetime和timestamp内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
MySQL数据库中的Date,DateTime和TimeStamp类型详解_MySQL
-
MySQL中对于NULL值的理解和使用教程
-
MySQL中的字符集涵义及使用方法总结(二) 博客分类: MySQL MySQLJDBC虚拟机OSSQL
-
MySQL中的字符集涵义及使用方法总结(一) 博客分类: MySQL MySQLSQL ServerLinux网络应用Windows
-
MySQL中CONCAT()和GROUP_CONCAT()函数的使用
-
MySQL实战中,Insert语句的使用心得总结
-
【转】MySQL中的datetime与timestamp比较 博客分类: 技术 mysqldatetimetimestamp
-
MySQL中的datetime与timestamp比较 博客分类: Mysql datetimetimestamp
-
SparkStreaming消费Kafka中的数据 使用zookeeper和MySQL保存偏移量的两种方式
-
使用java web 在jsp文件及Class中连接MySQL和SQLsever 的驱动方法