首页 > 其他 > 详细

左连接与右连接的区别

时间:2018-06-01 10:30:31      阅读:200      评论:0      收藏:0      [点我收藏+]

左连接只影响右表,右连接只影响左表。左连接返回左表中的全部数据,只返回右表中满足where条件的,右连接返回右表的全部数据,只返回左表满足where条件的。

左连接 (left join)

select *  from table1 left join tbale2 on table1.id=table2.id

这条sql语句返回结果 table1表中的数据全部返回 table2表中的数据只返回满足where条件的

右链接 (right join)

select * from table1 right join table2 on table1.id=table2.id

这条sql语句返回结果 table2表中的数据全部返回 table1表中的数据只返回满足where条件的

内连接 (insert join)

select * from table1 inner join table2 on table1.id = table2.id

这条sql语句返回结果 显示满足条件的数据 并不以谁为主表

左连接与右连接的区别

原文:https://www.cnblogs.com/tudouxifan/p/9120162.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!