左连接和右链接的区别?

Posted 沐雨青丝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了左连接和右链接的区别?相关的知识,希望对你有一定的参考价值。

左连接只影响右表,右链接只影响左表。
 
左连接   (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语句返回结果   显示满足条件的数据   并不以谁为主表

以上是关于左连接和右链接的区别?的主要内容,如果未能解决你的问题,请参考以下文章

左外连接和右外连接的区别

mysql中的左连接和右连接有啥区别[重复]

mysql左连接和右连接的区别

左外连接与右外连接区别?

左连接和右连接:因为我可以反转操作数,实际区别是啥?

SQL中的左连接与右连接,内连接有啥区别