微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

进行“分组依据”会导致多列

如何解决进行“分组依据”会导致多列

如果已知irt_tlevel列中不同值的数量是固定的,则可以使用条件聚合。

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

解决方法

我有一个Postgres带有通常group by子句的()查询:

select extract(year from a.created) as Year,a.testscoreid,b.irt_tlevel,count(a.*) as Questions
from asmt.testscores a join asmt.questions b
on a.questionid = b.questionid
where a.answered = True
group by Year,b.irt_tlevel
order by Year desc,a.testscoreid

该列b.irt_tlevel具有lowmedium和值,high所有这些结果均为行格式,例如:

Year    TestScoreId    Irt_tlevel    Questions
2015    1              Low           2
2015    1              Medium        3
2015    1              High          5

我希望我的结果采用以下格式:

Year    TestScoreId    Low    Medium    High    TotalQuestions
2015    1              2      3         5        10

任何帮助,将不胜感激。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。