SQL-如何在值到值之间对表中的值求和?

时间:2016-09-27 05:01:00

标签: sql oracle

我想在从值到值的选择中对行进行求和。 例如:

table T:
value:        type:
1              5
2              10
2              8
3              10
3              2

我想总结最后一个类型10的值(最后两个“3”值) 你知道怎么做吗? 提前谢谢!

2 个答案:

答案 0 :(得分:0)

Select value,sum(type) as SumofType
From T
Group by value

答案 1 :(得分:0)

我想你想要这个SQL。

   Select value,sum(type) as Sum_Type
    From Ta where value=3
    Group by value