首页 > 代码库 > Mysql 时间戳类型使用心得

Mysql 时间戳类型使用心得

例:
表 test的 create_time 为 timestamp 类型.
创建create_time 索引

执行 select * from test create_time = ‘2014-10-17‘ 。possible_keys 为 null
执行 select * from test create_time = ‘20141017000000‘ 。possible_keys 为 null
执行 select * from test create_time = 20141017000000 。possible_keys 为 create_time

Mysql 时间戳类型使用心得