如下內容轉自:http://blog.sina.com.cn/s/blog_7047c3ce0100pa22.html
用個例子來解析下mysql的左鏈接, 右鏈接和內鏈接
create table user_id ( id decimal(18) );
create table user_profile ( id decimal(18) , name varchar(255) ) ;
insert into user_id values (1);
insert into user_id values (2);
insert into user_id values (3);
insert into user_id values (4);
insert into user_id values (5);
insert into user_id values (6);
insert into user_id values (1);
insert into user_profile values (1, "aa");
insert into user_profile values (2, "bb");
insert into user_profile values (3, "cc");
insert into user_profile values (4, "dd");
insert into user_profile values (5, "ee");
insert into user_profile values (5, "EE");
insert into user_profile values (8, 'zz');
一. 左鏈接
mysql> select a.id id , ifnull(b.name, 'N/A') name from user_id a left join user_profile b on a.id = b.id;
mysql> select a.id id , ifnull(b.name, 'N/A') name from user_id a left join user_profile b on a.id = b.id;
+------+------+
| id | name |
+------+------+
| 1 | aa |
| 2 | bb |
| 3 | cc |
| 4 | dd |
| 5 | ee |
| 5 | EE |
| 6 | N/A |
| 1 | aa |
+------+------+
8 rows in set (0.00 sec)
user_id居左,故謂之左鏈接。 這種狀況下,以user_id爲主,即user_id中的全部記錄均會被列出。分如下三種狀況:
1. 對於user_id中的每一條記錄對應的id若是在user_profile中也剛好存在並且恰好只有一條,那麼就會在返回的結果中造成一條新的記錄。如上面1, 2, 3, 4對應的狀況。
2. 對於user_id中的每一條記錄對應的id若是在user_profile中也剛好存在並且有N條,那麼就會在返回的結果中造成N條新的記錄。如上面的5對應的狀況。
3. 對於user_id中的每一條記錄對應的id若是在user_profile中不存在,那麼就會在返回的結果中造成一條條新的記錄,且該記錄的右邊所有NULL。如上面的6對應的狀況。
不符合上面三條規則的記錄不會被列出。
好比, 要查詢在一個相關的表中不存在的數據, 經過id關聯,要查出user_id表中存在user_profile中不存在的記錄:
select count(*) from user_id left join user_profile on user_id.id = user_profile.id where user_profile.id is null;
二. 右鏈接
user_profile居右,故謂之右鏈接。 這種狀況下, 以user_profile爲主,即user_profile的全部記錄均會被列出。分如下三種狀況:
1. 對於user_profile中的每一條記錄對應的id若是在user_id中也剛好存在並且恰好只有一條,那麼就會在返回的結果中造成一條新的記錄。如上面2, 3, 4, 5對應的狀況。
2. 對於user_profile中的每一條記錄對應的id若是在user_id中也剛好存在並且有N條,那麼就會在返回的結果中造成N條新的記錄。如上面的1對應的狀況。
3. 對於user_profile中的每一條記錄對應的id若是user_id中不存在,那麼就會在返回的結果中造成一條條新的記錄,且該記錄的左邊所有NULL。如上面的8對應的狀況。
不符合上面三條規則的記錄不會被列出。
三. 內鏈接
MySQL內鏈接的數據記錄中,不會存在字段爲NULL的狀況。能夠簡單地認爲,內連接的結果就是在左鏈接或者右鏈接的結果中剔除存在字段爲NULL的記錄後所獲得的結果, 另外,MySQL不支持full join
mysql> select * from user_id a inner join user_profile b on a.id = b.id;
+------+------+------+
| id | id | name |
+------+------+------+
| 1 | 1 | aa |
| 1 | 1 | aa |
| 2 | 2 | bb |
| 3 | 3 | cc |
| 4 | 4 | dd |
| 5 | 5 | ee |
| 5 | 5 | EE |
+------+------+------+
7 rows in set (0.00 sec)
mysql> select * from user_id a, user_profile b where a.id = b.id;
+------+------+------+
| id | id | name |
+------+------+------+
| 1 | 1 | aa |
| 1 | 1 | aa |
| 2 | 2 | bb |
| 3 | 3 | cc |
| 4 | 4 | dd |
| 5 | 5 | ee |
| 5 | 5 | EE |
+------+------+------+
7 rows in set (0.00 sec)
mysql> select * from user_id a join user_profile b on a.id = b.id; +------+------+------+ | id | id | name | +------+------+------+ | 1 | 1 | aa | | 1 | 1 | aa | | 2 | 2 | bb | | 3 | 3 | cc | | 4 | 4 | dd | | 5 | 5 | ee | | 5 | 5 | EE | +------+------+------+ 7 rows in set (0.00 sec)