如何在postgres列中排名最高类别

时间:2018-09-12 12:34:11

标签: sql postgresql postgresql-9.3 rank

我需要找到一所学校的前五名。

Select count(distinct studentnr),
       count(case when ctf.text like 'United Kingdom' then 1 end) as nation1,
       count(case when ctf.text like 'Germany' then 1 end) as nation2,
       count(case when ctf.text like 'France' then 1 end) as nation3,
       count(case when ctf.text like 'Italy' then 1 end) as nation4,
       count(case when ctf.text like 'Hungary' then 1 end) as nation5

from student s  
       join pupil p on p.id = s.personid
       join pupilnationality pn on pn.pupilid = p.id
       join country ctf on ctf.id = pn.countryid

如您所见,这是一个手动搜索,所以我希望我查找这些字段并进行计数,然后将它们分别分类在列中。

但是我只想要前5名 这几乎是我想要的 这需要分区或等级吗?

enter image description here

1 个答案:

答案 0 :(得分:1)

为什么不将它们放在单独的行中?

select ctf.text, count(*)
from student s join
     pupil p
     on p.id = s.personid join
     pupilnationality pn
     on pn.pupilid = p.id join
     country ctf
     on ctf.id = pn.countryid
group by ctf.text
order by count(*) desc
limit 5;
相关问题