首先呢介绍下它们的定义:
left join (左连接):返回包括左表中的所有记录和右表中连接字段相等的记录。
right join (右连接):返回包括右表中的所有记录和左表中连接字段相等的记录。
inner join (等值连接或者叫内连接):只返回两个表中连接字段相等的行。
full join (全外连接):返回左右表中所有的记录和左右表中连接字段相等的记录。
明白了吧,什么,还不懂?好,来举个栗子:
A表 id name 1 张三 2 李四 3 王五 B表 id job_num job
2 0001 程序员
3 0002 医生
内连接:(只有2张表匹配的行才能显示)
select a.name,b.job from A a inner join B b on a.id=b.id 得到一条记录: 李四 程序员
左连接:(左边的表不加限制)
select a.name,b.job from A a left join B b on a.id=b.id 得到三条记录: 张三 null 李四 程序员 王五 医生
右连接:(右边的表不加限制)
select a.name,b.job from A a right join B b on a.id=b.id 得到两条记录: 李四 程序员 王五 医生
全外连接:(左右2张表都不加限制)
select a.name,b.job from A a full join B b on a.id=b.id 得到四条数据: 张三 null 李四 程序员 王五 医生
左连接(left join) ,右连接(right join ),内连接(inner join)和全外连接(full join)的区别