gpt4 book ai didi

行和列同时的 SQL 平均值 - 类似于矩阵平均值

转载 作者:行者123 更新时间:2023-12-04 21:15:12 30 4
gpt4 key购买 nike

我有一张这样的 table -
enter image description here

我想按部门分组以获得具有多行的四列的总数和平均值。输出应该看起来像 -
enter image description here
有人可以帮忙吗!

最佳答案

另一种选择是使用 CROSS APPLY

Select A.Dept     
,MonthTotal = sum(B.value)
,MonthAvg = avg(B.value)
From YourTable A
Cross Apply ( values (month1)
,(month2)
,(month3)
,(month4)
) B(value)
Group By A.Dept

关于行和列同时的 SQL 平均值 - 类似于矩阵平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46303031/

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