Oracle: #39;= ANY()#39; vs. #39;IN ()#39;(甲骨文:= ANY() vs. IN())
问题描述
我刚刚在 ORACLE SQL 中偶然发现了一些我很好奇的东西(不确定它是否在其他人中).我在这里作为维基询问,因为很难尝试在谷歌中搜索符号......
I just stumbled upon something in ORACLE SQL (not sure if it's in others), that I am curious about. I am asking here as a wiki, since it's hard to try to search symbols in google...
我刚刚发现,当根据一组值检查一个值时,您可以这样做
I just found that when checking a value against a set of values you can do
WHERE x = ANY (a, b, c)
相对于通常的
WHERE x IN (a, b, c)
所以我很好奇,这两种语法的原因是什么?一种是标准,另一种是一些古怪的 Oracle 语法吗?还是两者都是标准的?出于性能原因,是否有一种偏好,或者?
So I'm curious, what is the reasoning for these two syntaxes? Is one standard and one some oddball Oracle syntax? Or are they both standard? And is there a preference of one over the other for performance reasons, or ?
只是好奇有人能告诉我关于= ANY"的语法.加油!
Just curious what anyone can tell me about that '= ANY' syntax. CheerZ!
推荐答案
ANY
(或其同义词SOME
)是EXISTS
具有简单的相关性:
ANY
(or its synonym SOME
) is a syntax sugar for EXISTS
with a simple correlation:
SELECT *
FROM mytable
WHERE x <= ANY
(
SELECT y
FROM othertable
)
等同于:
SELECT *
FROM mytable m
WHERE EXISTS
(
SELECT NULL
FROM othertable o
WHERE m.x <= o.y
)
对于不可为空的字段上的相等条件,它变得类似于IN
.
With the equality condition on a not-nullable field, it becomes similar to IN
.
所有主流数据库,包括SQL Server
、MySQL
和PostgreSQL
,都支持该关键字.
All major databases, including SQL Server
, MySQL
and PostgreSQL
, support this keyword.
这篇关于甲骨文:'= ANY()' vs. 'IN()'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:甲骨文:'= ANY()' vs. 'IN()'
基础教程推荐
- Sql Server 字符串到日期的转换 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01