gpt4 book ai didi

sql - 按行获取多个指标的总和

转载 作者:行者123 更新时间:2023-12-02 08:28:46 26 4
gpt4 key购买 nike

社区新手,对该主题的经验有限。我正在尝试创建一个列,逐行获取指标的总和。因此,该列将对每个指标进行加总,第一位客户的总数为 3,第二位客户的总数为 2。使用 Microsoft Sql Server Mgmt Studio。任何帮助将不胜感激!

Customer      Date       Ind1   Ind2   Ind3    Ind4
12345 1-1-15 1 0 1 1
12346 1-2-15 0 1 1 0

最佳答案

你的意思是:

select customer,date, ind1+ind2+ind3 as Indicators from table_name order by Indicators

注意:您的列可能有 null 值,因此请使用:

select customer,date, isnull(ind1,0)+isnull(ind2,0)+isnull(ind3,0) as Indicators
from table_name order by Indicators

关于sql - 按行获取多个指标的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29474365/

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