首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

注释全外连接、左外连接、右外连接、以及它们之间的区别

2012-08-22 
诠释全外连接、左外连接、右外连接、以及它们之间的区别简单来讲,随便来个例子:A表B表idnameidname 1a1b 2b3c

诠释全外连接、左外连接、右外连接、以及它们之间的区别

简单来讲,随便来个例子:

A表                B表

id      name           id      name 

1          a                1       b 

2          b                3       c

4          c

左外连接就是以左表为准,去匹配右表,左表有多少条数据,结果就是多少条数据

select * from A left join B on A.id=B.id

id      name           id      name 

1          a                1       b 

2          b                null      null

4          c                null      null

右外连接就是与左外连接反之,以右表为准,去匹配左表,右表有多少条数据,结果就是多少条数据

select * from A right join B on A.id=B.id

id      name           id      name 

1          a                1       b 

null        null         3       c

全外连接数据条数不一定,相当与是左外连接 和右外连接 的综合

select * from A full join B on A.id=B.id

id      name             id      name 

1          a                  1       b 

2          b                null      null

null       null           3       c

4          c                null       null

简单来讲,随便来个例子:A表                B表id      name                id      name 1          a                1       b 2          b                3       c4          c左外连接就是以左表为准,去匹配右表,左表有多少条数据,结果就是多少条数据select * from A left join B on A.id=B.idid      name                id      name 1          a                1       b 2          b                null      null4          c                null      null右外连接就是与左外连接反之,以右表为准,去匹配左表,右表有多少条数据,结果就是多少条数据select * from A right join B on A.id=B.idid      name            id      name 1          a                1       b null        null               3       c全外连接数据条数不一定,相当与是左外连接 和右外连接 的综合select * from A full join B on A.id=B.idid      name                 id      name 1          a                  1       b 2          b                null      nullnull       null               3       c

热点排行