To, co próbujesz zrobić, nazywa się agregacją warunkową. Możesz użyć
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
To, co próbujesz zrobić, nazywa się agregacją warunkową. Możesz użyć
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