如下内容转自: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)