1.建立联合索引,这个索引需要同时包括where 及 group by 用到的列
explain结果,Extra:Using index for group-by
2.去掉排序,也就是加上order by null,或者,使用与group by 相同的列
explain结果,不会再有Extra:Using filesort
1.建立联合索引,这个索引需要同时包括where 及 group by 用到的列
explain结果,Extra:Using index for group-by
2.去掉排序,也就是加上order by null,或者,使用与group by 相同的列
explain结果,不会再有Extra:Using filesort