Quello che stai cercando di fare è chiamato aggregazione condizionale. Puoi usare
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
Quello che stai cercando di fare è chiamato aggregazione condizionale. Puoi usare
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