gpt4 book ai didi

mysql - View /子查询中未使用的列 (MySQL)

转载 作者:行者123 更新时间:2023-11-30 23:00:20 25 4
gpt4 key购买 nike

如果查询的结果集不使用子查询或 View 生成的字段,该字段是否仍由子查询处理?我的数据库中有很多在很多地方使用的 View ,但所需的确切字段集因上下文而异。我一直在使用可能包含每个上下文的额外字段的 View ,而不是在每个上下文中重复类似的查询(使用适当的字段组)。看起来这些额外的 View 确实会影响 MySQL 的性能(在下面的示例中,通过删除额外的字段,我的性能提高了 1/4)。任何解决方案?不同的数据库(即 Oracle)?

请参见下面的示例;运行 View 时显然可以跳过 charge_off_date 字段,但它仍然会影响性能。

select 
l.loan_id, last_payment_date
from
loans as l
left join
(select
loan_id,
max(ph.received_d) as last_payment_date,
max(case
when ph.co = 1 then coalesce(ph.received_d, ph.month)
else null
end) as charge_off_date
from
payment_history as ph) as payment_stats ON payment_stats.loan_id = l.loan_id

最佳答案

MySQL 实例化(不相关的)子查询并为未在 View 之外优化的 View 创建执行计划。也就是说,MySQL不会在这种情况下进行优化。

其他数据库在优化方面更聪明。这并不意味着他们会做正确的事,但有机会。

不过,我建议您将查询编写为仅包含聚合的 join 而没有子查询:

select l.loan_id, max(ph.received_d) as last_payment_date,
max(case when ph.co = 1 then coalesce(ph.received_d, ph.month)
end) as charge_off_date
from loans l left join
payment_history ph
on ph.loan_id = l.loan_id
group by l.loan_id;

from 子句中不需要子查询(无论如何这在 MySQL View 中是不允许的)。另外,如果您有 where 子句,这应该利用 where 子句并提高性能。

关于mysql - View /子查询中未使用的列 (MySQL),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24343019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com