0

嘿,我的数据库中有一张这样的表,如下所示。我想选择具有相似值的“DocumentNumber”。你看到有三个 10006513 值

  Ducumentnumber    requestType    price    quantity       sum of price  

      10006513                       1500
      10006513                       2500
      10006513                       7500

我想选择它们并写下例如:数量 = 3,然后我计算它们的价格总和。我想在 sql server 2008 中有一个好的查询

4

1 回答 1

0
select Ducumentnumber,Count(quantity) as Quatity,sum(price)
from table1
group by Ducumentnumber

SQL小提琴

于 2013-06-18T12:17:36.070 回答