我使用以下查询查询了一个表
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
(负价为贷方,正价为借方)