notice

当前位置: 系统之家 » 其他 » 技术应用 » 阅读正文


mysql多表连接查询

2010年9月1日 | 标签: | 发布: admin
点击图片查看更多内容

inner join,full outer join,left join,right jion
内部连接 inner join 两表都满足的组合
full outer 全连 两表相同的组合在一起,A表有,B表没有的数据(显示为null),同样B表有
A表没有的显示为(null)
A表 left join B表 左连,以A表为基础,A表的全部数据,B表有的组合。没有的为null
A表 right join B表 右连,以B表为基础,B表的全部数据,A表的有的组合。没有的为null

查询分析器中执行:
–建表table1,table2:
create table table1(id int,name varchar(10))
create table table2(id int,score int)
insert into table1 select 1,’lee’
insert into table1 select 2,’zhang’
insert into table1 select 4,’wang’
insert into table2 select 1,90
insert into table2 select 2,100
insert into table2 select 3,70
如表
————————————————-
table1|table2|
————————————————-
idname|idscore|
1lee|190|
2zhang|2100|
4wang|370|
————————————————-

以下均在查询分析器中执行

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

2.左连接:left join 或 left outer join
(1)左向外联接的结果集包括 LEFT OUTER 子句中指定的左表的所有行,而不仅仅是联接列所匹配的行。如果左表的某行在右表中没有匹配行,则在相关联的结果集行中右表的所有选择列表列均为空值(null)。
(2)sql 语句
select * from table1 left join table2 on table1.id=table2.id
————-结果————-
idnameidscore
——————————
1lee190
2zhang2100
4wangNULLNULL
——————————
注释:包含table1的所有子句,根据指定条件返回table2相应的字段,不符合的以null显示

3.右连接:right join 或 right outer join
(1)右向外联接是左向外联接的反向联接。将返回右表的所有行。如果右表的某行在左表中没有匹配行,则将为左表返回空值。
(2)sql 语句
select * from table1 right join table2 on table1.id=table2.id
————-结果————-
idnameidscore
——————————
1lee190
2zhang2100
NULLNULL370
——————————
注释:包含table2的所有子句,根据指定条件返回table1相应的字段,不符合的以null显示

4.完整外部联接:full join 或 full outer join
(1)完整外部联接返回左表和右表中的所有行。当某行在另一个表中没有匹配行时,则另一个表的选择列表列包含空值。如果表之间有匹配行,则整个结果集行包含基表的数据值。
(2)sql 语句
select * from table1 full join table2 on table1.id=table2.id
————-结果————-
idnameidscore
——————————
1lee190
2zhang2100
4wangNULLNULL
NULLNULL370
——————————
注释:返回左右连接的和(见上左、右连接)

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

2.内连接:join 或 inner join

3.sql 语句
select * from table1 join table2 on table1.id=table2.id
————-结果————-
idnameidscore
——————————
1lee190
2zhang2100
——————————
注释:只返回符合条件的table1和table2的列

4.等价(与下列执行效果相同)
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)

三、交叉连接(完全)

1.概念:没有 WHERE 子句的交叉联接将产生联接所涉及的表的笛卡尔积。第一个表的行数乘以第二个表的行数等于笛卡尔积结果集的大小。(table1和table2交叉连接产生3*3=9条记录)

2.交叉连接:cross join (不带条件where…)

3.sql语句
select * from table1 cross join table2
————-结果————-
idnameidscore
——————————
1lee190
2zhang190
4wang190
1lee2100
2zhang2100
4wang2100
1lee370
2zhang370
4wang370
——————————
注释:返回3*3=9条记录,即笛卡尔积

4.等价(与下列执行效果相同)
A:select * from table1,table2

标签:

版权声明:


转载时请注明文章出处,并在文章结尾表明本文链接,特此声明!


本文链接:http://www.xtgly.com/2010/09/01/mysql%e5%a4%9a%e8%a1%a8%e8%bf%9e%e6%8e%a5%e6%9f%a5%e8%af%a2.htm


  1. 2010年9月1日17:31

    这个我们公司早就在用了,开始的时候觉得蛮好玩的,不过JOIN多了就头晕了。而且有的时候JOIN的查询效率还不如拆成两个SQL语句来快,所以也不必为了JOIN而JIOIN。

  2. admin
    2010年9月1日17:41

    主要是因为要导出数据,导出的数据分散在各个表字段中,,连续 left join 了 五个表,才把数据导出来 :|

  3. 2010年9月3日16:17

    深奥啊~··

  4. 2010年9月3日17:06

    你的东西是蛮专业的,但是要挂广告,找我啊。
    嘻嘻

  5. 2010年9月3日17:59

    的确很专业

  6. 2010年9月3日18:11

    那我也来支持下。。

  7. 2010年9月3日18:33

    呃。看不懂的说。呵呵。
    很专业!

  8. 2010年9月3日19:22

    基本不用这种语句。。。。

  9. 2010年9月3日19:57

    学习了。呵呵

  10. 2010年9月3日20:16

    可以做个链接吗?

  11. 2010年9月3日21:24

    技术帖子哟,难懂。

  12. 2010年9月4日00:11

    楼主能写的再难一点吗?因为我已经基本都看不懂了,希望大家和我一样也看不懂……
    哈哈,果真够坏

  13. 2010年9月7日18:18

    这个貌似不错,先看看再说~

    • admin
      2010年9月7日21:53

      我觉得 :grin: 是满实用的

3 trackbacks

  1. auckland accommodation Trackback | 2011/11/30
  2. auckland lighting Trackback | 2011/12/06
  3. psychic on line Trackback | 2011/12/06