码迷,mamicode.com
首页 > 数据库 > 详细

oracle 中(+)是什么意思

时间:2020-10-22 23:07:49      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:右外连接   并且   tar   get   特殊   jce   oem   左外连接   tps   

原文内容:
oracle中的(+)是一种特殊的用法,(+)表示外连接,并且总是放在非主表的一方。

例如

左外连接:select A.a,B.a from A LEFT JOIN B ON A.b=B.b;

等价于select A.a,B.a from A,B where A.b = B.b(+);

再举个例子,这次是右外连接:select A.a,B.a from A RIGHT JOIN B ON A.b=B.b;

等价于select A.a,B.a from A,B where A.b (+) = B.b;

个人补充:

数据表的连接有:
1、内连接(自然连接): 只有两个表相匹配的行才能在结果集中出现
2、外连接: 包括
(1)左外连接(左边的表不加限制)
(2)右外连接(右边的表不加限制)
(3)全外连接(左右两表都不加限制)
3、自连接(连接发生在一张基表内)

有 (+) 的一方代表有可以为空,即副表

 

 

oracle中的(+)是一种特殊的用法,(+)表示外连接,并且总是放在非主表的一方。例如左外连接:select A.a,B.a from A LEFT JOIN B ON A.b=B.b;等价于select A.a,B.a from A,B where A.b = B.b(+);再举个例子,这次是右外连接:select A.a,B.a from A RIGHT JOIN B ON A.b=B.b;等价于select A.a,B.a from A,B where A.b (+) = B.b;

oracle 中(+)是什么意思

标签:右外连接   并且   tar   get   特殊   jce   oem   左外连接   tps   

原文地址:https://www.cnblogs.com/lab-zj/p/13860257.html

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