mysql 中排序方式
有序索引顺序扫描直接返回有序数据
explain select customer_id from customer order by store_id\G;
这种方式在使用explain分析查询的时候显示为Using Index,不需要额外的排序,效率较高。
Filesort排序
所有不是通过索引直接返回排序结果的排序都叫Filesort排序
explain select * from customer order by store_id\G;
这种方式在使用explain分析查询的时候显示为Using filesort,
时间: 2024-11-07 17:45:51