gpt4 book ai didi

sql - 在 MySQL 查询中获取水平平均值的最有效方法是什么?

转载 作者:可可西里 更新时间:2023-11-01 07:46:48 24 4
gpt4 key购买 nike

我有以下 MySQL 表

Id  |  One  |  Two  |  Three
----------------------------
1 | 10 | 30 | 20
2 | 50 | 60 | 20
3 | 60 | NULL | 40

编辑: 当然默认情况下表不需要为 NULL,但我不希望它影响平均值(因此平均值计算为 50 而不是 33,33 ).

我希望它看起来像这样,使用 MySQL 查询:

Id | Average
------------
1 | 20
2 | 43,33
3 | 50

实现此目标的最有效方法是什么?

最佳答案

select id, (ifnull(one,0) + ifnull(two,0) + ifnull(three,0))/
((one is not null) + (two is not null) + (three is not null)) as average from table

关于sql - 在 MySQL 查询中获取水平平均值的最有效方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2173716/

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