其他分享
首页 > 其他分享> > 左外连接,右外连接,全外连接

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

作者:互联网

左外连接

例子:
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,全外,t2,t1,null,连接
来源: https://www.cnblogs.com/gizing/p/10925327.html