时间:2021-07-01 10:21:17 帮助过:19人阅读
3) 右连接
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
4) 完全连接
select a.*,b.* from a full join b on a.id=b.parent_id
结果是
1 张3 1 23 1
2 李四 2 34 2
null 3 34 4
3 王武 null
SQL的四种连接-左外连接、右外连接、内连接、全连接
标签:str 例子 条件 指定 相关 信息 学生 存在 having