MySQL的排序时间 create_time 字段需不需要添加索引
以 t_sys_log 表为例,3774851条数据,占用空间1.01G,24个字段
SELECT * FROM `t_sys_log` order by create_time desc limit 10000,10
create_time
不加索引 耗时 8.051 秒
加索引 耗时 0.468 秒
结论,需要加索引
学习日志 LIUGUOFENG
MySQL的排序时间 create_time 字段需不需要添加索引
以 t_sys_log 表为例,3774851条数据,占用空间1.01G,24个字段
SELECT * FROM `t_sys_log` order by create_time desc limit 10000,10
create_time
不加索引 耗时 8.051 秒
加索引 耗时 0.468 秒
结论,需要加索引