postgresql / SQL中的嵌套聚合和子查询与分组

时间:2010-09-13 23:36:45

标签: sql postgresql aggregate-functions

我需要在Postgresql 8.3中使用嵌套子查询获得的一堆不同聚合中执行相同的组。

如果我这样做:

select f10 as report_id,
       (SELECT AVG(age)
          FROM (select f10 as report_id,  
                       f62 as age 
                  from reports 
                 where f55 in ('1')) 
                   and f62 in ('1', '2', '3', '4', '5'))) foo
      group by report_id) as agg1,
       (SELECT AVG(age)
          FROM (select f10 as report_id, 
                       f62 as age 
                  from reports 
                 where f55 in ('2')) 
                   and f62 in ('1', '2', '3', '4', '5'))) foo
      group by report_id) as agg2,
    from reports
group by report_id;

这几乎是我想要的,但是group by不做任何事情 - 所有聚合都是相同的,它是所有report_ids的聚合。我想要每个report_id单独聚合。

如果我尝试在聚合中进行分组,那么我不能返回超过2个字段或行,因此它不起作用。

有人建议我这样做

sum(case  
      when f55 in ('1') then f62 
      else 0 
    end) / sum(case 
                 when f55 in ('1') then 1 
                 else 0 
               end) 

...等。对于每个聚合,但我认为这不是一个好方法。似乎无法弄清楚什么更好。

1 个答案:

答案 0 :(得分:1)