0

会社で費やした金額に基づいてキャッシュフローを表示する必要があります。

私たちは日々さまざまな商品を販売しており、より良い方法で取引を示す必要があります。

このようなデータがあるとしましょう。

Date            Product        Profit
2012-08-17      Apple          $1.00
2012-08-17      Apple          $1.00
2012-08-17      Apple          $1.00
2012-08-16      Apple          $1.00
2012-08-16      Apple          $1.00
2012-08-14      Apple          $1.00
2012-08-13      Apple          $1.00
2012-08-13      Apple          $1.00
2012-08-13      Apple          $1.00

8月17日に3個、8月16日に2個のリンゴを販売しました。クエリを実行しようとしているリンゴは、以下の結果を表示するのに役立ちます。

Date            Product        Total Profit
2012-08-17      Apples         $3.00
2012-08-16      Apple          $2.00
2012-08-14      Apple          $1.00
2012-08-13      Apple          $3.00

私は毎日すべての利益を合計する必要があります。

質問をするのを手伝ってもらえますか?私は数回失敗しました。ありがとうございました。

4

3 に答える 3

0

これを試して

 select date,product,sum(profit) as totalprofit from table
 group by date,product
于 2012-11-17T08:44:13.327 に答える
0
SELECT date,product,SUM(profit) FROM table
GROUP BY date
于 2012-11-17T08:45:21.600 に答える
0

製品が同じ場合、次のクエリを使用できます。

SELECT Date, Product, sum(Profit) as TotalProfit
FROM transactions
GROUP BY Date

製品が同じでない場合は、次のクエリを使用できます。

SELECT Date, Product, sum(Profit) as TotalProfit
FROM transactions
GROUP BY Product, Date
于 2012-11-17T08:51:52.537 に答える