oracle 中(+) 是什么意思

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,oracle,数据库)