mysql 使用 group by和 order by 时extra 的执行情况

CREATE TABLE `stu` (
  `name` varchar(111) DEFAULT 'bb',
  `score` int(111) DEFAULT NULL,
  `class` varchar(11) DEFAULT NULL,
  KEY `class` (`class`)

) ENGINE=MyISAM DEFAULT CHARSET=utf8



explain select class from stu where class >5 group by class;
explain select score from stu where score >5 order by score;
explain select score from stu where score >5 group by score;


result1:  Using where; Using index for group-by
result2:  Using where; Using filesort
result3:  Using where; Using temporary; Using filesort


结论 
若group by 字段有索引   则为result1    使用where 使用index
若order by 字段没有索引 则为result2    多使用一次文件排序
若group by 字段没有索引 则为result3    多使用一次文件排序 且需要使用到临时表


说明 group by 在分组时 使用了临时表  且group by 自带一次排序 可理解为 group by 时 自定为 group by 的字段 asc 排序 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值