mysql union 慢_为什么UNION在MySQL中的查询这么慢?

When I optimize my 2 single queries to run in less than 0.02 seconds and then UNION them the resulting query takes over 1 second to run.

您的查询包括ORDER BY … LIMIT子句?

如果在UNION之后放置一个ORDER BY … LIMIT,它将被应用于整个UNION,并且在这种情况下不能使用索引.

如果id是主键,则此查询将是即时的:

SELECT *

FROM table

ORDER BY id

LIMIT 1

,但这不会:

SELECT *

FROM table

UNION ALL

SELECT *

FROM table

ORDER BY id

LIMIT 1

Also, a UNION ALL takes longer than a UNION DISTINCT. I would assume allowing duplicates would make the query run faster and not slower.

这也似乎是由于ORDER BY.排序较小的集合比较大的集更快.

Am I really just better off running the 2 queries separately? I would prefer to use the UNION

您需要将结果集排序吗?

如果没有,只需摆脱最后的ORDER BY.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值