例如,我需要一些帮助构建一个sql Server函数,该函数在Excel中充当SumIf
SumIF(Fees.Fee_Amount,Fees.Type ='Services' and Fees.Fee_Code = 'B01')
所以,如果它是Fees.Fee_Amount并且where部分是Fees.Type =’Services’和Fees.Fee_Code =’B01′,那么该项将被求和
语法将是SumIf(TableName.ColumnName,Criteria),函数将返回总数.
解决方法
最简单的方法是SUM一个CASE子句,如下所示:
SUM(CASE WHEN Fees.Type ='Services' and Fees.Fee_Code = 'B01' THEN Fees.Fee_Amount END) AS ColumnAlias,