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

Mysql嵌套查询与连接查询的效率问题

时间:2017-11-16 19:42:29      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:速度   xxx   级别   比较   原因分析   where   rom   .com   tin   

执行语句如下:select count(DISTINCT l1) from t1 where l1 in(select l2 from t2 where l3=‘xxx‘) 感觉速度很慢(几十秒),

但是单独执行子查询select l2 from t2 where l3=‘xxx‘或者去掉子查询这个直接执行select count(DISTINCT l1) from t1都比较快。

将语句改成join的形式效果就快很多(毫秒级别),修改后语句如下:select  count(DISTINCT l1) from t1 inner join t2 where t1.l1=t2.l2 and t2.l3=‘xxx‘。

具体原因分析可见:https://www.cnblogs.com/Bccd/p/6607515.html

Mysql嵌套查询与连接查询的效率问题

标签:速度   xxx   级别   比较   原因分析   where   rom   .com   tin   

原文地址:http://www.cnblogs.com/bigbitcoin/p/7845729.html

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