左连接、右连接、内连接、全外连接的区别是什么?
时间:2020-09-22 09:40:07
作者:重庆seo小潘
来源:
left join (左连接,左外连接):返回包括左表中的所有记录和右表中连接字段相等的记录。 right join (右连接,右外连接):返回包括右表中的所有记录和左表中连接字段相等的记录。 inner join (等值连接或者叫内连接):只返回两个表中连接字段相等的行
left join (左连接,左外连接):返回包括左表中的所有记录和右表中连接字段相等的记录。
right join (右连接,右外连接):返回包括右表中的所有记录和左表中连接字段相等的记录。
inner join (等值连接或者叫内连接):只返回两个表中连接字段相等的行。
full join (全外连接):返回左右表中所有的记录和左右表中连接字段相等的记录。
举个例子:
内连接:(只有2张表匹配的行才能显示)select a.name,b.job from A ainner join B b on a.id=b.A_id只能得到一条记录:小李 老师左连接:(左边的表不加限制)select a.name,b.job from A aleft join B b on a.id=b.A_id 三条记录: 小王 null 小李 老师 小刘 null右连接:(右边的表不加限制)select a.name,b.job from A aright join B b on a.id=b.A_id两条记录: 小李 老师 null 程序员全外连接:(左右2张表都不加限制)select a.name,b.job from A afull join B b on a.id=b.A_id 四条数据 小王 null 小李 老师 小刘 null null 程序员相关推荐:《SQL教程》以上就是左连接、右连接、内连接、全外连接的区别是什么?的详细内容,更多请关注小潘博客其它相关文章!