当前位置:   article > 正文

MySQL 7种Join的定义&图解&示范&结果(所有join类型)_mysql join

mysql join

MySQL 7种Join的定义&图解&示范&结果(所有join类型)

image-20240626150746313

基本知识

笛卡尔积

笛卡尔(Descartes)乘积又叫直积。假设集合A={a,b},集合B={0,1,2},则两个集合的笛卡尔积为{(a,0),(a,1),(a,2),(b,0),(b,1), (b,2)}

建表&填充数据

create table t_user(
id int auto_increment primary key,
account varchar(64) ,
age int ,
name varchar(16)
)
create table t_body(
id int auto_increment primary key,
account varchar(64) ,
high int ,
weight varchar(16)
)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

每个表都留了一条另一个表没有的数据(account对应不上)

image-20240626142155792

image-20240626142210099

1-Join

join其实就是inner join,是inner join缩写

SELECT <select_list>
FROM Table_A A
INNER JOIN Table_B B
ON A.Key = B.Key
  • 1
  • 2
  • 3
  • 4

image-20240626143835829

不带条件

select * from t_user  join t_body  ;
  • 1

返回的笛卡尔积

image-20240626150921746

account筛选

select * from t_user  join t_body  on t_user.account = t_body.account;
  • 1

image-20240626151009762

1-Inner Join 内连接

内连接返回两个表中匹配的行。实现方式可以是使用等值连接(ON条件),或者使用隐式的交叉连接(WHERE条件)。

SELECT <select_list>
FROM Table_A A
INNER JOIN Table_B B
ON A.Key = B.Key
  • 1
  • 2
  • 3
  • 4

image-20240626143835829

不带条件

select * from t_user inner join t_body  ;
  • 1

可以看到不带条件的时候其实就是两个集合笛卡尔积的结果

image-20240626142250806

account相同

select * from t_user inner join t_body on t_user.account = t_body.account ;
  • 1

得到的是在左右两个表account相同的记录

image-20240626143720054

where筛选

select * from t_user inner join t_body where t_user.account = t_body.account ;
  • 1

image-20240626150105896

玩点特殊的

select * from t_user inner join t_body on t_user.age = t_body.high ;
  • 1

image-20240626144425224

跨字段试试

加一条记录给t_body

image-20240626144614750

select * from t_user inner join t_body on t_user.id = t_body.account ;
  • 1

可以看到结果也被正确筛选出来了,我们删除这条刚加的继续往下试

image-20240626144538066

2-Left Join 左连接

左连接返回左表中的所有行,以及右表中与左表匹配的行。如果右表中没有匹配的行,则返回NULL值。

SELECT <select_list>
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
  • 1
  • 2
  • 3
  • 4

image-20240626144919473

不带条件

select * from t_user left join t_body ;
  • 1

image-20240626145451911

account筛选

select * from t_user left join t_body on t_user.account  = t_body.account;
  • 1

也就是左边表的所有行都保留,右边的如果有匹配上了就有数据,匹配不到就把字段的值设置为NULL

image-20240626145531959

3-Right Join 右连接

右连接返回右表中的所有行,以及左表中与右表匹配的行。如果左表中没有匹配的行,则返回NULL值。

SELECT <select_list>
FROM Table_A A
RIGHT JOIN Table_B B
ON A.Key = B.Key
  • 1
  • 2
  • 3
  • 4

image-20240626150242736

不带条件

select * from t_user right join t_body  ;
  • 1

image-20240626150323302

account筛选

image-20240626150352757

4-Outer Join 全连接

全连接返回左表和右表中的所有行,如果左表或右表中没有匹配的行,则返回NULL值。

SELECT <select_list>
FROM Table_A A
FULL OUTER JOIN Table_B B
ON A.Key = B.Key
  • 1
  • 2
  • 3
  • 4

image-20240626150434227

4.1-Full Outer Join 全外连接

不带条件

mysql不支持直接全连接操作,可以把左连接和右连接的结果组装到一起就是了,但是不建议这样做,性能差

select * from t_user full outer join t_body  ;
  • 1

image-20240626150524780

account筛选
SELECT *
FROM t_user
LEFT JOIN t_body ON t_user.account = t_body.account
UNION
SELECT *
FROM t_user
RIGHT JOIN t_body ON t_user.account = t_body.account
WHERE t_user.account IS NULL;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

image-20240626152537794

4.2-Left Outer Join 左外连接

不带参数
select * from t_user left outer join  t_body 
  • 1

image-20240626152710051

account筛选
select * from t_user left outer join  t_body on t_user.account  = t_body.account  ;
  • 1

跟left join是一个样的

image-20240626152758636

4.3-Right Outer Join 右外连接

select * from t_user right outer join  t_body on t_user.account  = t_body.account  ;
  • 1

跟right join是一样的

image-20240626152957431

5-Left Excluding Join 左排除连接

左排除连接返回左表中没有在右表中找到匹配的行。它只返回左表中没有与右表匹配的行,而右表中匹配的行将被排除在结果集之外。

SELECT <select_list>
FROM Table_A A
LEFT JOIN Table_B B
ON A.Key = B.Key
WHERE B.Key IS NULL
  • 1
  • 2
  • 3
  • 4
  • 5

image-20240626180717625

select * from t_user left join t_body on t_user.account  = t_body.account where t_body.account is null ;
  • 1

image-20240626180741810

6-Right Excluding Join 右排除连接

右排除连接返回右表中没有在左表中找到匹配的行。它只返回右表中没有与左表匹配的行,而左表中匹配的行将被排除在结果集之外。

SELECT <select_list>
FROM Table_A A
RIGHT JOIN Table_B B
ON A.Key = B.Key
WHERE A.Key IS NULL
  • 1
  • 2
  • 3
  • 4
  • 5

image-20240626180845263

select * from t_user right join t_body on t_user.account  = t_body.account where t_user.account is null ;
  • 1

image-20240626180940295

7-Outer Excluding Join 外部排除连接

外部排除连接是左排除连接和右排除连接的结合,返回左表和右表中没有匹配的行。它返回左表和右表中没有与对方表匹配的行,而匹配的行将被排除在结果集之外。

SELECT <select_list>
FROM Table_A A
FULL OUTER JOIN Table_B B
ON A.Key = B.Key
WHERE A.Key IS NULL OR B.Key IS NULL
  • 1
  • 2
  • 3
  • 4
  • 5

image-20240626181113965

full outer join 在mysql是不支持的,需要组合实现,将左连接和右连接筛选出的数据组合

select * from t_user left  join t_body on t_user.account  = t_body.account where  t_user.account is null or t_body.account is null 
union 
select * from t_user right  join t_body on t_user.account  = t_body.account where  t_user.account is null or t_body.account is null;
  • 1
  • 2
  • 3

image-20240626181408522

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/1020539
推荐阅读
相关标签
  

闽ICP备14008679号