我面临来自我的一个查询的沉重负担。我在我的表中有1000万个数据,我已经完成了pid和fid列的索引,然后mysql解释显示它没有使用任何索引
这是我的查询
select * from tableA where pid < '94898' and fid='37' order by id desc limit 1;
我的mysql解释输出说明了这个
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE tableA index fid PRIMARY 4 NULL 152 Using where
但是mysql slow显示其扫描数百万个数据