PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Fare `raggruppa per` risulta in più colonne

Puoi utilizzare l'aggregazione condizionale se è noto che il numero di valori distinti nella colonna irt_tlevel è fisso.

select 
extract(year from a.created) as Year,
a.testscoreid, 
sum(case when b.irt_tlevel = 'Low' then 1 else 0 end) as Low,
sum(case when b.irt_tlevel = 'Medium' then 1 else 0 end) as Medium,
sum(case when b.irt_tlevel = 'High' then 1 else 0 end) as High,
count(*) as Questions
from asmt.testscores a 
join asmt.questions b on a.questionid = b.questionid
where a.answered = True
group by Year, a.testscoreid
order by Year desc, a.testscoreid