重写此查询的最佳方法是什么?

时间:2013-09-05 08:08:39

标签: sql sql-server-2008 tsql group-by

我的查询是

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

我得到以下输出

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

您可以在输出中观察,产品类型正在维修。怎么做对吗?我想要CV,RTV和音频的总和

1 个答案:

答案 0 :(得分:6)

SELECT    [ProductType], 
          SUM(total) 
FROM      isss
GROUP BY  [ProductType]