Re: filter partitions - Mailing list pgsql-admin

From Pradeep Kumar
Subject Re: filter partitions
Date
Msg-id CAGsUxCyFE_gQ8OsXERbYabCfY=qe293BAs3uvH2Wfvcx+x3YaQ@mail.gmail.com
Whole thread Raw
In response to filter partitions  (Olivier Leprêtre <o.lepretre@gmail.com>)
List pgsql-admin
select p, max(item) over (partition by p) from item where item='D'

Virus-free. www.avast.com

On Tue, Feb 13, 2018 at 8:37 PM, Olivier Leprêtre <o.lepretre@gmail.com> wrote:

Hi,

 

I wonder how could it be possible to extract partitions that contains a peculiar item

 

Consider 4 partitions 1, 2, 3, 4 with different items A, B, C... inside

 

P item

1 A

1 B

1 C

2 B

2 D

2 G

2 H

3 B

3 C

4 X

4 D

4 Z

 

 

How could a select return partitions 2,4 because they both contains D item ?

 

As a result, I would get :

 

2 B

2 D

2 G

2 H

4 X

4 D

4 Z

 

I can filter partitions with lag, lead, nth_value... but how could I write something like "select P,any (item=D) over (partition by P) from..."

 

Thanks for any help,

 

 


Garanti sans virus. www.avast.com



--
Pradeep

pgsql-admin by date:

Previous
From: Laurenz Albe
Date:
Subject: Re: postgres not starting
Next
From: pradeep
Date:
Subject: Re: filter partitions