gpt4 book ai didi

mysql - 大查询 SQL 中其他列中 2 个提取列的总和

转载 作者:行者123 更新时间:2023-11-29 05:11:36 25 4
gpt4 key购买 nike

select x,
count(case when i='abc' then 1 else null end) as ele1,
count(case when i='def' then 1 else null end) as ele2,
sum(ele1+ele2) as sum1 from (INNER QUERY)

当我使用 sum(ele1+ele2) 时,抛出 ele1 未找到的错误。如何在不使用任何其他外部查询的情况下在同一查询中获取 sum1?

最佳答案

您不能在选择中使用别名作为列名

select x,
count(case when i='abc' then 1 else null end) as ele1,
count(case when i='def' then 1 else null end) as ele2,
sum( ( case when i='abc' then 1 else null end ) +
( case when i='def' then 1 else null end ) ) as sum1
from (INNER QUERY)

关于mysql - 大查询 SQL 中其他列中 2 个提取列的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38497303/

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