假如table表有联合索引(sex, id)
同时id本身是主键
那么下面这个sql走索引吗?
select * from table where sex='m' order by id limit 1000000,10
我的感觉是,根据sql执行顺序
应该是先执行from table where sex='m',筛选出结果集,然后再去order by id吧,这样感觉就不会走索引了
所以必须要
select * from table in (select id from table where sex='m' order by id limit 1000000,10)
这样吗?
(1)SQL 语句执行顺序:
SELECT
(2) 如果select 只查询索引字段,order by 索引字段会用到索引,要不然就是全表排列;
(3) 如果有where 条件,比如where sex='m' order by id 这样order by 也会用到索引!