Oracle: What does `(+)` do in a WHERE clause?(Oracle:“(+)在 WHERE 子句中有什么作用?)
问题描述
在我们正在迁移的基于 Oracle 的应用程序中发现以下内容(通用):
Found the following in an Oracle-based application that we're migrating (generalized):
SELECT
Table1.Category1,
Table1.Category2,
count(*) as Total,
count(Tab2.Stat) AS Stat
FROM Table1, Table2
WHERE (Table1.PrimaryKey = Table2.ForeignKey(+))
GROUP BY Table1.Category1, Table1.Category2
(+) 在 WHERE 子句中有什么作用?我以前从未见过这样使用它.
What does (+) do in a WHERE clause? I've never seen it used like that before.
推荐答案
根据="的哪一侧,(+) 在,它表示 LEFT OUTER 或 RIGHT OUTER 连接(在这种情况下,它是左外连接)这是旧的 Oracle 语法,有时会被最先学习它的人更喜欢,因为他们喜欢这样可以缩短他们的代码.
Depending on which side of the "=" the "(+) is on, it denotes a LEFT OUTER or a RIGHT OUTER join (in this case, it's a left outer join). It's old Oracle syntax that is sometimes preferred by people who learned it first, since they like that it makes their code shorter.
为了可读性,最好不要使用它.
Best not to use it though, for readability's sake.
这篇关于Oracle:“(+)"在 WHERE 子句中有什么作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Oracle:“(+)"在 WHERE 子句中有什么作用?
基础教程推荐
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
