0

我的查询是

 select [ProductType], SUM(total) From isss
 group by [ProductType],total 

我得到以下输出

   CV   0
    RTV 0
    Audio   4
    CV  34
    RTV 10
    Audio   4

您可以在输出中观察到,产品类型正在重复。如何正确处理?我想要 CV、RTV 和音频的总和

4

1 回答 1

6
SELECT    [ProductType], 
          SUM(total) 
FROM      isss
GROUP BY  [ProductType]
于 2013-09-05T08:09:24.477 回答