我的一个查询面临着沉重的负担。我的表中有 1000 万条数据,并且我已经对 pid 和 fid 列进行了索引,然后 mysql explain 显示它没有使用任何索引
这是我的查询
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慢显示它扫描数百万数据