BETWEEN clause versus lt;= AND gt;=(BETWEEN 子句与 lt;= AND gt;=)
问题描述
使用 BETWEEN 子句或使用 <= AND >= 比较之间是否存在性能差异?
Is there a performance difference between using a BETWEEN clause or using <= AND >= comparisons?
即这两个查询:
SELECT *
FROM table
WHERE year BETWEEN '2005' AND '2010';
...和
SELECT *
FROM table
WHERE year >= '2005' AND year <= '2010';
在本例中,年份列是带有索引的 VARCHAR2(4).
In this example, the year column is VARCHAR2(4) with an index on it.
推荐答案
两个示例查询之间没有性能差异,因为 BETWEEN
只是表达 inclusive 的一种简写方式i> 范围比较.当 Oracle 解析 BETWEEN
条件时,它会自动扩展为单独的比较子句:
There is no performance difference between the two example queries because BETWEEN
is simply a shorthand way of expressing an inclusive range comparison. When Oracle parses the BETWEEN
condition it will automatically expand out into separate comparison clauses:
例如
SELECT *
FROM table
WHERE column BETWEEN :lower_bound AND :upper_bound
...会自动变成:
SELECT *
FROM table
WHERE :lower_bound <= column
AND :upper_bound >= column
这篇关于BETWEEN 子句与 <= AND >=的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:BETWEEN 子句与 <= AND >=


基础教程推荐
- 带有WHERE子句的LAG()函数 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01