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

外连接(左右),内连接,交叉连接

时间:2020-03-26 10:46:30      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:rom   kkk   不能   tps   show   col   table   net   src   

详细讲解链接:https://blog.csdn.net/kkk9127/article/details/1487686

 

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

 

  • 外连接
left join,right join分别是left outer join,right outer join的简写
以上再加一个full join就是外连接。
left join:左表为基础表,key相同的行连接起来
               左表有右表无→右表null表示,左表无右表有→无显示
right join:以此类推
full join:左表有右表无→右表null表示,左表无右表有→左表null表示
 
  • 内连接
join(inner join):把两个表key一样的抠出来
 
  • 交叉连接
cross join:表的行所有结合可能性show出来
 
select * from table1 cross join table2 where table1.id=table2.id  (注:cross join后加条件只能用where,不能用on)
 
技术图片

 

外连接(左右),内连接,交叉连接

标签:rom   kkk   不能   tps   show   col   table   net   src   

原文地址:https://www.cnblogs.com/Jasper-changing/p/12572617.html

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