优化 gruop by 语句
Posted 心碎whn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了优化 gruop by 语句相关的知识,希望对你有一定的参考价值。
默认情况下,mysql对所有的gruop by col1,col2...的字段进行排序。如果查询包含group by但用户想要避免排序结果的消耗,则可以指定order by null禁止排序。
explain select payment_date,sum(amount) from payment group by payment_date\\G;
explain select payment_date,sum(amount) from payment group by payment_date order by null\\G;
从上面的例子可以看出,第一个SQL的执行时间为0.05sec, 而第二个SQL的执行时间为0.00sec。
以上是关于优化 gruop by 语句的主要内容,如果未能解决你的问题,请参考以下文章