mysql 强制指定索引 Posted on 2015-02-26 In mysql , innodb mysql 强制指定索引 select * from t_a_index force index(a_b) where a = 1 and b = 1 order by a desc; select * from t_a_index ignore index(a_b) where a = 1 and b = 1 order by a desc;