码迷,mamicode.com
首页 > 其他好文 > 详细

左外连接,右外连接,全外连接

时间:2019-05-26 11:01:44      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:int   into   保留   HERE   出现   决定   primary   --   使用   

左外连接

  • 用在查询块的from短语中
  • 又称左连接,列出左边所有元组,A left join B on 条件表达式中的on决定了B表中符合条件表达式的数据才保留,不符合的右边字段为null
  • where短语的条件等到外连接结束后才使用,对外连接结果进行过滤

例子:
create table t1(c1 int primary key, c2 int);
create table t2(cc1 int primary key, cc2 int);
insert into t1 values (1,1),(2,2),(5,5);
insert into t2 values (2,2),(3,3),(4,4);
select * from t1 left join t2 on t1.c2=t2.cc2;
结果:
|c1|c2|cc1|cc2|
|--|--|--|--|
|2|2|2|2|
|1|1|null|null|
|5|5|null|null|

右外连接

同左外连接,只不过是列出右边所有元组,又称右连接

全外连接

左右表的所有元组均列出(且各只出现一次),不符合on表达式的字段为null

左外连接,右外连接,全外连接

标签:int   into   保留   HERE   出现   决定   primary   --   使用   

原文地址:https://www.cnblogs.com/gizing/p/10925327.html

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