在PostgreSQL

时间:2016-10-02 11:34:42

标签: postgresql date max case window-functions

我在PostgreSQL中有一个包含3个字段的表:ebtyp,erdat,v_no。

输入:

enter image description here

我想申请:(case when ebtyp='LA' and erdat=max(erdat) then vbeln end) as Inbound_delivery_number

我不想过滤或使用LA / AB的where子句,因为我不想删除任何行。

输出:

enter image description here

我尝试了这个,但它不起作用:

select case 
        when ebtyp='LA' and erdat=max(erdat) 
             then v_no OVER (PARTITION BY ebtyp) 
      end as Inbound_delivery_number 
from abc.table1;

我们可以在Case语句中使用带布尔函数的聚合函数吗?对此有何解决方案?

2 个答案:

答案 0 :(得分:0)

根据我对您的需求的理解,您没有提供理想的数据来展示您的案例,因此我通过将两个erdat更改为更高版本来修改它:

 ebtyp |   erdat    | v_no
-------+------------+------
 LA    | 2016-09-09 |    4
 AB    | 2016-10-10 |    4
 LA    | 2016-11-11 |    5
 AB    | 2016-11-15 |    6

查询:

select 
  ebtyp, erdat, v_no, 
  max(case when ebtyp = 'LA' then erdat end) over () as max_erdat, 
  case when ebtyp = 'LA' then max(v_no) over (partition by ebtyp) else v_no end as max_v_no 
from abc.table1;

输出:

 ebtyp |   erdat    | v_no | max_erdat  | max_v_no
-------+------------+------+------------+----------
 AB    | 2016-10-10 |    4 | 2016-11-11 |        4
 AB    | 2016-11-15 |    6 | 2016-11-11 |        6
 LA    | 2016-09-09 |    4 | 2016-11-11 |        5
 LA    | 2016-11-11 |    5 | 2016-11-11 |        5

答案 1 :(得分:0)

我认为窗口函数应该提供你想要的功能。如果我理解正确,那么这会在问题中产生结果:

select t1.*,
       max(erdate) over (partition by ebtype) as max_erdat,
       (case when ebtyp = 'LA'
             then max(v_no) over (partition by ebtyp) 
             else v_no
        end) as Inbound_delivery_number 
from abc.table1 t1;