Home > Database > Mysql Tutorial > 简单内交联与外交联总结

简单内交联与外交联总结

WBOY
Release: 2016-06-07 14:51:02
Original
1254 people have browsed it

今日悟出 外交联数据会越取越多 而且只能交联一个就是 A left join b on a.id = b.xx leftjoin c on a.id = b.xxx 是以A为主不断扩充数据的不会减少A的数据 A B C 1 1 小明 1 15岁 2 2 小杰 3 13岁 3 4 小刚 4 12岁 以上查询的结果是 也就是会有空数据 1 小

今日悟出

外交联数据会越取越多 而且只能交联一个就是

         A  left join b on a.id = b.xx

leftjoin c on a.id = b.xxx

是以A为主不断扩充数据的不会减少A的数据

A                B                                 C

1                 1    小明                   1       15岁

2                2      小杰                   3       13岁

3                4       小刚                   4       12岁

以上查询的结果是   也就是会有空数据

1       小明         15岁

2       小杰                  

3                        13岁


外交联  A表为准

 


  


内交联数据会越取缺少

         A  innerjoin b on a.id = b.id

innerjoin c on b.kid = c.id

 

A                B                                          C

id               id      kid                                id

1                 1     1          小明                 1       15岁

2                2       2     小杰                   3       13岁

3                4       3     小刚                   4       12岁

结果

先是 A  innerjoin b on a.id = b.id   其中A id=3的在B表中没有只取1 2

1       1       小明

2       2       小杰

然后 inner joinc on b.kid = c.id       其中B kid=2的在C表没有

1       1       小明         15岁

 

内交联   以最后交联的C表为准




 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template