加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

解析sql语句中left

发布时间:2020-12-12 07:12:48 所属栏目:MsSql教程 来源:网络整理
导读:table a(id,type): id type ---------------------------------- 1 1 2 1 3 2 table b(id,class): id class --------------------------------- 1 1 2 2 sql语句1:select a.*,b.* from a left join b on a.id = b.id and a.type = 1; sql语句2:select a.*,b
table a(id,type):
id     type
----------------------------------
1      1        
2      1         
3      2         
table b(id,class):
id    class
---------------------------------
1      1
2      2
sql语句1:select a.*,b.* from a left join b on a.id = b.id and a.type = 1;
sql语句2:select a.*,b.* from a left join b on a.id = b.id where a.type = 1;
sql语句3:select a.*,b.* from a left join b on a.id = b.id and b.class = 1;

sql语句1的执行结果为:
a.id    a.type    b.id    b.class
----------------------------------------
1        1            1        1
2        1            2        2
3        2              

sql语句2的执行结果为:
a.id    a.type    b.id    b.class
----------------------------------------
1        1            1        1
2        1            2        2

sql语句3的执行结果为:
a.id    a.type    b.id    b.class
----------------------------------------
1        1            1        1
2        1           
3        2           
由sql语句1可见,left join 中左表的全部记录将全部被查询显示,on 后面的条件对它不起作用,除非再后面再加上where来进行筛选,这就是sql语句2了;由sql语句3可见,on后面的条件中,右表的限制条件将会起作用。
**************************************************************************
sql语句4:select a.*,b.* from a inner join b on a.id = b.id and a.type = 1;
sql语句5:select a.*,b.* from a inner join b on a.id = b.id where a.type = 1;
sql语句6:select a.*,b.* from a,b where a.id = b.id and a.type = 1;
sql语句7:select a.*,b where a.type = 1 and a.id = b.id;

这四条语句的执行结果一样,如下:
a.id    a.type    b.id    b.class
----------------------------------------
1        1            1        1
2        1            2        2
由此可见,inner join 中on后面的限制条件将全部起作用,这与where的执行结果是一样的。另外,where语句与inner join确实能得到相同的结果,只是效率不同(这个我没有测试过,不过我相信这个结论)。
但是sql语句6是否比sql语句7的效率要低一些,我没有足够的数据量来测试,不过我也相信是如此的。

您可能感兴趣的文章:

  • MySQL利用profile分析慢sql详解(group left join效率高于子查询)
  • mysql not in、left join、IS NULL、NOT EXISTS 效率问题记录
  • SQL之left join、right join、inner join的区别浅析
  • sql 左连接和右连接的使用技巧(left join and right join)
  • sql left join 命令详解
  • SQL中的left join right join
  • 超详细mysql left join,inner join用法分析
  • SQL 外链接操作小结 inner join left join right join
  • sql中left join的效率分析与提高效率方法

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读