PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Fazendo `group by` resultar em várias colunas


Você pode usar a agregação condicional se for conhecido que o número de valores distintos na coluna irt_tlevel é fixo.
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