在使用索引时,MySQL时间索引使用函数后失效
对表sys_robot_log中的datetime列设置时间索引:
运行查询指令,使用函数DATE限定查询数据发生的日期
select * from sys_robot_log where DATE(datetime) = DATE(now())
使用explain select * from sys_robot_log where DATE(datetime) = DATE(now())查看是否使用到索引
type显示ALL说明索引失效
重新将date函数设为索引:alter table sys_robot_log add key idx_date_index((date(datetime)));
select * from sys_robot_log where DATE(datetime) = DATE(now())
使用explain select * from sys_robot_log where DATE(datetime) = DATE(now())查看是否使用到索引
可以看到已经使用了索引查询idx_date_index
需要注意的是MySQL 8.0.13 之前不支持函数索引,所以老版本不支持函数索引,需要手工模拟创建或者改 SQL。
MySql中时间字段增加函数索引
最新推荐文章于 2024-08-18 15:02:14 发布