当前位置:Gxlcms > 数据库问题 > MySQL中的datetime与timestamp比较

MySQL中的datetime与timestamp比较

时间:2021-07-01 10:21:17 帮助过:14人阅读

值不能早于1970或晚于2037

储存

TIMESTAMP

1.4个字节储存(Time stamp value is stored in 4 bytes)

2.值以UTC格式保存( it stores the number of milliseconds)

3.时区转化 ,存储时对当前的时区进行转换,检索时再转换回当前的时区。

datetime

1.8个字节储存(8 bytes storage)

2.实际格式储存(Just stores what you have stored and retrieves the same thing which you have stored.)

3.与时区无关(It has nothing to deal with the TIMEZONE and Conversion.)

实例对比

现在我来做个时区对他们的影响。

1.先插入一个数据insert into `t8` values(now(), now());

2.改变客户端时区(东9区,日本时区)。

3.再次显示插入的数据,变化了,timestamp类型的数据 增加了 1个小时


接下来 讨论一些timestamp 的其他的属性

1.null 是否为空

timestamp 默认允许为 “非空”(not null by default), 如果你在定义“ts TIMESTAMP DEFAULT NULL” 是非法的。 可以指定为空 null ,“ts TIMESTAMP NULL" ,这时可以在添加语句改变默认值。

我在mysql5.3上,使用nvicat客户端 追加栏目,查看sql文,发现 默认如下:

`xxx`  timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP

ts2 TIMESTAMP NULL DEFAULT 0,
ts3 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP 

default (一个表中只能有一个列选择下面其中一种)

(注意,与DB的sql_mode有关,非严格模式下,不会有这样的检查)

default CURRENT_TIMESTAMP

default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP

ON UPDATE CURRENT_TIMESTAMP


多写报错

技术分享

MySQL中的datetime与timestamp比较

标签:存储   sql   mysql   timestamp   

人气教程排行