使用partition by子句时如何在Postgres中选择特定分区

时间:2015-03-06 15:27:00

标签: sql postgresql window-functions

我有一个具有以下结构的查询 -

select a.a1,b.b1,c.c1,d.d1,
        count(e.e1) over (partition by e.e2)
from a join b
 on a.aid = b.bid
 join c
 on b.bid = c.cid
 join e
 ......many other joins;

问题是我想做点什么     count(e.e1)over(e.e2分区,其中e.e2 ='mouse')

我的意思是我想通过e2列进行分区,但考虑其中一个分区。

例如,如果e2列具有以下值 - “mouse”,“cat”和“dog”。然后上面的查询将给出类似于以下的输出 -

a11 b11 c11 d11 4  -> record for "mouse" 
a11 b11 c11 d11 5  -> record for "cat"
a11 b11 c11 d11 7  -> record for "dog" 

现在,我不想要“猫”和“狗”的记录。我只想要“鼠标”。 有什么建议吗?

1 个答案:

答案 0 :(得分:2)

我认为你想要条件聚合:

select sum(case when e2 = 'mouse' then 1 else 0 end) over ()

这会将" mouse" s的数量放在结果集中的每一行上。

编辑:

如果它基于列,那么您只需要:

select count(*) over (partition by e2)