码迷,mamicode.com
首页 > 数据库 > 详细

mysql中explain看性能

时间:2015-01-09 22:13:55      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:

select distinct col_name from table where a=X and b=Y and date(time)=‘xx-xx-xx‘;
执行时间 27.9772 秒

explain select distinct col_name from table where a=X and b=Y and date(time)=‘xx-xx-xx‘;

idselect_typetabletypepossible_keyskeykey_lenrefrowsExtra  
1 SIMPLE access ALL NULL NULL NULL NULL 38714243 Using where; Using temporary
 

select distinct col_name from table where a=X and b=Y and time<‘xx-xx-xx‘;
执行时间 0.0038 秒

explain select distinct col_name from table where a=X and b=Y and time<‘xx-xx-xx‘;

idselect_typetabletypepossible_keyskeykey_lenrefrowsExtra  
1 SIMPLE access range idx_access_dt idx_access_dt 4 NULL 1 Using where; Using temporary

select distinct col_name from table where a=X and b=Y and time=‘xx-xx-xx xx:xx:xx‘;
执行时间 0.0031 秒

explain select distinct col_name from table where a=X and b=Y and time=‘xx-xx-xx xx:xx:xx‘;

idselect_typetabletypepossible_keyskeykey_lenrefrowsExtra  
1 SIMPLE access ref idx_access_dt idx_access_dt 4 const 82 Using where; Using temporary

 

参考:
http://www.cnitblog.com/aliyiyi08/archive/2008/09/09/48878.html 

mysql中explain看性能

标签:

原文地址:http://www.cnblogs.com/nerrissa/p/4214116.html

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