码迷,mamicode.com
首页 > 其他好文 > 详细

左连接和右链接的区别?

时间:2016-07-01 15:54:23      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

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

左连接和右链接的区别?

标签:

原文地址:http://www.cnblogs.com/chen5421/p/5633077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!