>데이터 베이스 >MySQL 튜토리얼 > 一条统计Group By语句优化

一条统计Group By语句优化

WBOY
WBOY원래의
2016-06-07 17:36:441215검색

在检查慢SQL时,发现一条统计SQL执行过慢,如下:原SQLSELECTplatform,channel,COUNT(DISTINCT(platformUserId))ascntFROM(SELECTplatform,channel,platformUser

在检查慢SQL时,,发现一条统计SQL执行过慢,如下:


原SQL

SELECT platform, channel, COUNT(DISTINCT(platformUserId)) as cnt FROM(

 SELECT platform, channel, platformUserId, MIN(insertTimestamp) as rtime

 FROM tsz_user  

 GROUP BY platform, channel, platformUserId

 ) a where a.rtime >= 1392393600 and a.rtime

 GROUP BY platform, channel;

执行时间:

wKioL1MBhMvhzpS9AAaAfFwXDUs635.jpg

耗时2分33秒


优化后SQL

SELECT platform, channel, COUNT(DISTINCT(platformUserId)) as cnt FROM(

 SELECT platform, channel, platformUserId, MIN(insertTimestamp) as rtime

 FROM tsz_user  

 GROUP BY platform, channel, platformUserId order by null

 ) a where a.rtime >= 1392393600 and a.rtime

 GROUP BY platform, channel order by null;


执行时间:

wKioL1MBhO-hysWyAAafG9IVFSM971.jpg

耗时55.22秒


执行计划:

wKioL1MBioPDXmVoAAQCe6tCaA4446.jpg


结论:

默认情况下,MySQL对所有GROUP BY col1,col2...的字段进行排序。如果查询包括GROUP BY,想要避免排序结果的消耗,则可以指定ORDER By NULL禁止排序。


参考手册:

wKioL1MBhTyynTKDAANBygQJ12k373.jpg




本文出自 “贺春旸的技术专栏” 博客,请务必保留此出处

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.