细说mysql的timestamp int datetime的区别

2022-04-25 08:43:33 浏览数 (1)

timestamp

int

datetime

存储长度

4字节(32位)

4字节(32位)

8字节(64位)

时间显示格式

Y-m-d H:i:s(2018-01-01 00:00:00)

时间戳(1530712944)

Y-m-d H:i:s(2018-01-01 00:00:00)

是否支持mysql提供的时间函数

支持

不支持

支持

时间失效时间

1970年-2038年

有符号整型最大支持2038年 无符号整型最大支持2100年

0000-9999年

时间存储

utc时间保存 (it stores the number of milliseconds )

字符串的方式存储( Just stores what you have stored and retrieves the same thing which you have stored )

支持默认的current_timestamp

支持

非索引查询速度

索引查询

0 人点赞