最赞回答 / 慕粉4057600
using index是有条件的,需要你说查询的的列与order by 之后的列具有相同的索引才行。例如 select release_year from film order by title;要使用using index,需要 给 release_year和title字段建立相同的索引
2018-09-07