MYSQL OR vs IN performance(MYSQL OR 与 IN 性能)
问题描述
我想知道以下在性能方面是否有任何差异
I am wondering if there is any difference in regards to performance between the following
SELECT ... FROM ... WHERE someFIELD IN(1,2,3,4)
SELECT ... FROM ... WHERE someFIELD between 0 AND 5
SELECT ... FROM ... WHERE someFIELD = 1 OR someFIELD = 2 OR someFIELD = 3 ...
或者 MySQL 会像编译器优化代码一样优化 SQL 吗?
or will MySQL optimize the SQL in the same way compilers will optimize code ?
将 AND
更改为 OR
的原因在评论中说明.
Changed the AND
's to OR
's for the reason stated in the comments.
推荐答案
接受的答案没有解释原因.
The accepted answer doesn't explain the reason.
以下引用自高性能 MySQL,第 3 版.
Below are quoted from High Performance MySQL, 3rd Edition.
在许多数据库服务器中,IN() 只是多个 OR 子句的同义词,因为两者在逻辑上是等价的.在 MySQL 中不是这样,它对 IN() 列表中的值进行排序并使用快速二进制搜索来查看某个值是否在列表中.这是列表大小的 O(Log n),而等效的一系列 OR 子句在列表的大小上是 O(n)(即,对于大列表要慢得多)
In many database servers, IN() is just a synonym for multiple OR clauses, because the two are logically equivalent. Not so in MySQL, which sorts the values in the IN() list and uses a fast binary search to see whether a value is in the list. This is O(Log n) in the size of the list, whereas an equivalent series of OR clauses is O(n) in the size of the list (i.e., much slower for large lists)
这篇关于MYSQL OR 与 IN 性能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:MYSQL OR 与 IN 性能


- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 更改自动增量起始编号? 2021-01-01