SQL JOIN的用法

上一篇 / 下一篇  2011-04-15 15:34:36 / 个人分类:测试角

SQL中内连接和外连接

table1                                             table2

id

name

 

id

score

1

lee 

 

1

90 

2

zhang 

 

2

100

4

wang

 

3

70

 

外连接

1.   概念:包括左向外联接、右向外联接或完整外部联接

 

2.左连接:left joinleft outer join

(1)左向外联接的结果集包括LEFT OUTER子句中指定的左表的所有行,而不仅仅是联接列所匹配的行。如果左表的某行在右表中没有匹配行,则在相关联的结果集行中右表的所有选择列表列均为空值(null)

(2)sql语句

select * from table1 left join table2 on table1.id=table2.id

(3)结果

id

name

id

score

1

lee 

1

90 

2

zhang 

2

100

4

wang

null

null

 

3.右连接:right joinright outer join

(1)右向外联接是左向外联接的反向联接。将返回右表的所有行。如果右表的某行在左表中没有匹配行,则将为左表返回空值。

(2)sql语句

select * from table1 right join table2 on table1.id=table2.id

(3)结果

id

name

id

score

1

lee 

1

90 

2

zhang 

2

100

null

null

3

70

 

4.完整外部联接:full joinfull outer join

(1)完整外部联接返回左表和右表中的所有行。当某行在另一个表中没有匹配行时,则另一个表的选择列表列包含空值。如果表之间有匹配行,则整个结果集行包含基表的数据值。

(2)sql语句

select * from table1 full join table2 on table1.id=table2.id

(3)结果

id

name

id

score

1

lee 

1

90 

2

zhang 

2

100

4

wang

null

null

null

null

3

70

 

内连接

1.概念:内联接是用比较运算符比较要联接列的值的联接

2.内连接:joininner join

3.sql语句

select * from table1 join table2 on table1.id=table2.id

4.结果

id

name

id

score

1

lee 

1

90 

2

zhang 

2

100

5.等价(与下列执行效果相同)

A:select a.*,b.* from table1 a,table2 b where a.id=b.id

B:select * from table1 cross join table2 where table1.id=table2.id (注:cross join后加条件只能用where,不能用on)

 


TAG:

 

评分:0

我来说两句

Open Toolbar