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 子句中有什么作用?


基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01