码迷,mamicode.com
首页 > 数据库 > 详细

mysql的几种join 及 full join 问题

时间:2020-07-10 13:33:02      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:记录   style   技术   join   drop   val   ast   data   south   

【注:本文转自 https://blog.csdn.net/u012410733/article/details/63684663】

【注意】:Oracle数据库支持full join,mysql是不支持full join的,但仍然可以同过左外连接+ union+右外连接实现

初始化SQL语句:

/*join 建表语句*/
drop database if exists test;
create database test;
use test;
 
/* 左表t1*/
drop table if exists t1;
create table t1 (id int not null,name varchar(20));
insert into t1 values (1,t1a);
insert into t1 values (2,t1b);
insert into t1 values (3,t1c);
insert into t1 values (4,t1d);
insert into t1 values (5,t1f);
 
/* 右表 t2*/
drop table if exists t2;
create table t2 (id int not null,name varchar(20));
insert into t2 values (2,t2b);
insert into t2 values (3,t2c);
insert into t2 values (4,t2d);
insert into t2 values (5,t2f);
insert into t2 values (6,t2a);

 

1、笛卡尔积

两表关联,把左表的列和右表的列通过笛卡尔积的形式表达出来。

mysql> select * from t1 join t2;

 技术图片

 

2、左连接

两表关联,左表全部保留,右表关联不上用null表示。

mysql> select * from t1 left join t2 on t1.id = t2.id;

技术图片


技术图片

 

3、右连接

右表全部保留,左表关联不上的用null表示。

技术图片

mysql> select * from t1 right join t2 on t1.id =t2.id;

 技术图片

 

4、内连接

两表关联,保留两表中交集的记录。

技术图片

mysql> select * from t1 inner join t2 on t1.id = t2.id;

 技术图片

 

5、左表独有

两表关联,查询左表独有的数据。

技术图片

mysql> select * from t1 left join t2 on t1.id = t2.id where t2.id is null;

 技术图片

 

6、右表独有

两表关联,查询右表独有的数据。

技术图片

mysql> select * from t1 right join t2 on t1.id = t2.id where t1.id is  null;

 技术图片

 

7、全连接

两表关联,查询它们的所有记录。

技术图片

oracle里面有full join,但是在mysql中没有full join。我们可以使用union来达到目的。

mysql> select * from t1 left join t2 on t1.id = t2.id
    -> union 
    -> select * from t1 right join t2 on t1.id = t2.id;

 技术图片

 

8、并集去交集

两表关联,取并集然后去交集。

技术图片

mysql> select * from t1 left join t2 on t1.id = t2.id where t2.id is null
    -> union 
    -> select * from t1 right join t2 on t1.id = t2.id where t1.id is null;

 技术图片

mysql的几种join 及 full join 问题

标签:记录   style   技术   join   drop   val   ast   data   south   

原文地址:https://www.cnblogs.com/hong-bo/p/13278596.html

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