标签:语句 file bsp tor explain png idt order by select
explain select customer_id from customer order by store_id\G;
这种方式在使用explain分析查询的时候显示为Using Index,不需要额外的排序,效率较高。
所有不是通过索引直接返回排序结果的排序都叫Filesort排序
explain select * from customer order by store_id\G;
这种方式在使用explain分析查询的时候显示为Using filesort,
标签:语句 file bsp tor explain png idt order by select
原文地址:http://www.cnblogs.com/dsitn/p/7091656.html