sql

1、join on where:
https://stackoverflow.com/questions/354070/sql-join-where-clause-vs-on-clause

https://www.cnblogs.com/jessy/p/3525419.html

大概:
join on 先连表
where 连表后根据where条件筛取符合条件的行

数据库在通过连接两张或多张表来返回记录时,都会生成一张中间的临时表,然后再将这张临时表返回给用户。
在使用left jion时,on和where条件的区别如下:
(1) on条件是在生成临时表时使用的条件,它不管on中的条件是否为真,都会返回左边表中的记录。
(2) where条件是在临时表生成好后,再对临时表进行过滤的条件。这时已经没有left join的含义(必须返回左边表的记录)了,条件不为真的就全部过滤掉。
其实关键原因就是left join,right join,full join的特殊性,不管on上的条件是否为真都会返回left或right表中的记录,full则具有left和right的特性的并集。 而inner jion没这个特殊性,则条件放在on中和where中,返回的结果集是相同的。

2、where xxx like '%aaa%' 筛选时,也会把xxx字段中的空值筛掉

3、left join 如果on条件,左表右表是一对多的情况,最后连表会有多行

4、join=inner join

  • select * from a join b on a.id = b.id
  • select * from a inner join b on a.id = b.id
  • select * from a, b where a.id = b.id
    上面的三个是相等的.
  • 剩下的join类型有:
    left join
    right join
    cross join
    full join
  • 2005新加
    cross apply
    outer apply

5、多表full outer join 的问题


问题及需求.png

错误写法-直接连表full join,但跑出来会有id重复.png

正确的三种写法-表比较多的话,可先union取多表的id合集,最后用left join相连.png

参考链接:https://blog.csdn.net/benjayming/article/details/103895643

你可能感兴趣的:(sql)