码迷,mamicode.com
首页 > 其他好文 > 详细

优化 gruop by 语句

时间:2017-06-29 17:59:51      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:.com   group by   例子   优化   str   font   src   bsp   alt   

默认情况下,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 语句

标签:.com   group by   例子   优化   str   font   src   bsp   alt   

原文地址:http://www.cnblogs.com/dsitn/p/7095166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!