Wat u probeert te doen, wordt voorwaardelijke aggregatie genoemd. U kunt
select
cname,
sum(case when type='A' then amount else 0 end) as total_A,
sum(case when type='B' then amount else 0 end) as total_B
from balances
group by cname
Wat u probeert te doen, wordt voorwaardelijke aggregatie genoemd. U kunt
select
cname,
sum(case when type='A' then amount else 0 end) as total_A,
sum(case when type='B' then amount else 0 end) as total_B
from balances
group by cname