SQL: 左连接,右连接,内连接
Posted 筱筱的春天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL: 左连接,右连接,内连接相关的知识,希望对你有一定的参考价值。
例子: ---------------------- --------------------------- a表 id name b表 id job parent_id 1 张三 1 23 1 2 李四 2 34 2 3 王武 3 34 4 ---------------------- ---------------------------- a.id同parent_id 存在关系
原表如上
1.左连接:
官方解释:left join(左连接)返回包括左表中的所有记录和右表中连接字段相等的记录
左连接 select a.*,b.* from a left join b on a.id=b.parent_id 结果是 1 张3 1 23 1 2 李四 2 34 2 3 王武 null
2.右连接:
官方解释:right join(右连接)返回包括右表中的所有记录uhe和左表中连接字段相等的记录
右连接 select a.*,b.* from a right join b on a.id=b.parent_id 结果是 1 张3 1 23 1 2 李四 2 34 2 null 3 34 4
3.内连接:
官方解释:inner join(等值连接)之返回两个表这哦个连接字段相等的行
内连接 select a.*,b.* from a inner join b on a.id=b.parent_id 结果是 1 张3 1 23 1 2 李四 2 34 2
以上是关于SQL: 左连接,右连接,内连接的主要内容,如果未能解决你的问题,请参考以下文章