次のクエリでテーブルをクエリしました
select content_type_code_id
, price
, count(price) AS PRICECOUNT
from dbo.transaction_unrated
where transaction_date >= '2012/05/01'
and transaction_date < '2012/06/01'
and content_provider_code_id in (1)
group by content_type_code_id, price
ORDER BY price ASC
次の結果セットが生成されます
content_type_code_id price PRICECOUNT
1 -1.99 1
1 -0.99 1
1 0.99 178
1 1.99 786
しかし、私は次のような結果セットが必要です。
content_type_code_id price Debits Credits
1 0.99 178 1
1 1.99 786 1
(貸方としての負の価格と借方としての正の価格)