आप इसे एक समग्र फ़ंक्शन और CASE
. के साथ आसानी से कर सकते हैं कथन:
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
देखें SQL Fiddle with Demo