mysql的幾種join
2017年03月19日 14:49:07 carl-zhao 閱讀數:7845 標簽: mysqlsqljoin 更多
個人分類: MySQL
版權聲明:本文為博主原創文章,未經博主允許不得轉載。 https://blog.csdn.net/u012410733/article/details/63684663
之前學習mysql的時候對於老師說的左連接,右連接…之類的概念一直不清楚,模模糊糊的。工作之後理解這些名詞一概念,現在把它記錄一下。也希望能夠幫助對於mysql中join不太清晰的朋友。這樣可以根據自己的業務場景選擇合適的join語句。
初始化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 t1;
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
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
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;