美文网首页
mysql中左连接,右连接和内连接

mysql中左连接,右连接和内连接

作者: PENG先森_晓宇 | 来源:发表于2020-03-18 11:21 被阅读0次

基本定义:

left join (左连接):返回包括左表中的所有记录和右表中连接字段相等的记录。
right join (右连接):返回包括右表中的所有记录和左表中连接字段相等的记录。
inner join (等值连接或者叫内连接):只返回两个表中连接字段相等的行。

俩表

A表

id name
1 小王
2 小李
3 小刘

B表

id A_id job
1 2 老师
2 4 程序员

内连接:(只有2张表匹配的行才能显示)

select a.name,b.job from A a  inner join B b on a.id=b.A_id

只能得到一条记录

name job
小李 老师

左连接:(左边的表不加限制)

select a.name,b.job from A a  left join B b on a.id=b.A_id

三条记录

name job
小王 null
小李 老师
小刘 null

右连接:(右边的表不加限制)

select a.name,b.job from A a  right join B b on a.id=b.A_id

两条记录

name job
小李 老师
null 程序员

相关文章

网友评论

      本文标题:mysql中左连接,右连接和内连接

      本文链接:https://www.haomeiwen.com/subject/wgrgehtx.html