Můžete to udělat snadno pomocí agregační funkce a CASE
prohlášení:
select year,
sum(case when place = 'U.S.' then price else 0 end) "U.S.",
sum(case when place = 'U.K.' then price else 0 end) "U.K."
from yourtable
group by year
Můžete to udělat snadno pomocí agregační funkce a CASE
prohlášení:
select year,
sum(case when place = 'U.S.' then price else 0 end) "U.S.",
sum(case when place = 'U.K.' then price else 0 end) "U.K."
from yourtable
group by year