This SELECT query takes 180 seconds to finish(此 SELECT 查询需要 180 秒才能完成)
问题描述
更新:
只是在更显眼的地方提及它.当我将 IN 更改为 = 时,查询执行时间从 180 秒减少到 0.00008 秒.可笑的速度差异.
Just to mention it on a more visible place. When I changed IN for =, the query execution time went from 180 down to 0.00008 seconds. Ridiculous speed difference.
这个 SQL 查询需要 180 秒才能完成!这怎么可能?有没有办法优化它以使其更快?
This SQL query takes 180 seconds to finish! How is that possible? is there a way to optimize it to be faster?
SELECT IdLawVersionValidFrom
FROM question_law_version
WHERE IdQuestionLawVersion IN
(
SELECT MAX(IdQuestionLawVersion)
FROM question_law_version
WHERE IdQuestionLaw IN
(
SELECT MIN(IdQuestionLaw)
FROM question_law
WHERE IdQuestion=236 AND IdQuestionLaw>63
)
)
每个表中只有大约 5000 行,所以速度应该不会太慢.
There are only about 5000 rows in each table so it shouldn't be so slow.
推荐答案
(发布我的评论作为答案,显然它确实有所作为!)
(Posting my comment as an answer as apparently it did make a difference!)
如果您更改 IN
有什么不同=
?
Any difference if you change the
IN
to=
?
如果有人想进一步调查这个问题,我刚刚做了一个测试,发现它很容易重现.
If anyone wants to investigate this further I've just done a test and found it very easy to reproduce.
创建表
CREATE TABLE `filler` (
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
)
创建过程
CREATE PROCEDURE `prc_filler`(cnt INT)
BEGIN
DECLARE _cnt INT;
SET _cnt = 1;
WHILE _cnt <= cnt DO
INSERT
INTO filler
SELECT _cnt;
SET _cnt = _cnt + 1;
END WHILE;
END
填充表
call prc_filler(5000)
查询 1
SELECT id
FROM filler
WHERE id = (SELECT MAX(id) FROM filler WHERE id =
( SELECT MIN(id)
FROM filler
WHERE id between 2000 and 3000
)
)
Equals 解释输出 http://img689.imageshack.us/img689/5592/equals.png
查询 2(同样的问题)
Query 2 (same problem)
SELECT id
FROM filler
WHERE id in (SELECT MAX(id) FROM filler WHERE id in
( SELECT MIN(id)
FROM filler
WHERE id between 2000 and 3000
)
)
解释输出 http://img291.imageshack.us/img291/8129/52037513.png
这篇关于此 SELECT 查询需要 180 秒才能完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:此 SELECT 查询需要 180 秒才能完成
基础教程推荐
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01