将Total添加到重复值

时间:2018-05-14 13:06:36

标签: reporting-services

我有像

这样的要求
claimnumber   --  amount -- category    
-----------     ------  --------     
123     --         10  --    A   
123     --         10   --   B    
456     --         10   --   C    
456    --          10  --    B

我希望报告将数据分组如下, 不同的主张 - 2 他们的总费用是20

Total Count  --  Total Amount
-----------    ------------   
2           --    20

ssrs怎么可能??

1 个答案:

答案 0 :(得分:0)

这应该有效:

select 
count(claimnumber) as [total count],
sum(amount)        as [total amount] 
from tablename
group by claimnumber