What does a (+) sign mean in an Oracle SQL WHERE clause?

Posted kakaisgood

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了What does a (+) sign mean in an Oracle SQL WHERE clause?相关的知识,希望对你有一定的参考价值。

This is an Oracle-specific notation for an outer join. It means that it will include all rows from t1, and use NULLS in the t0 columns if there is no corresponding row in t0.

In standard SQL one would write:

SELECT t0.foo, t1.bar
  FROM FIRST_TABLE t0
 RIGHT OUTER JOIN SECOND_TABLE t1;

以上是关于What does a (+) sign mean in an Oracle SQL WHERE clause?的主要内容,如果未能解决你的问题,请参考以下文章

What does jQuery.fn mean?

What does -1 mean in numpy reshape?

What does it mean window.property in js?

Helix, what does it mean for Sitecore CMS development?

What does "size" in int(size) of MySQL mean?

(译)What does explicit keyword mean?