with agg as (
select a, min(d) as d
from x
group by a
having 1 = any(array_agg(b))
)
select distinct on (a, c)
a, c, d
from
x
inner join
agg using (a, d)
order by a, c
min(d)
の場合 a
内で一意ではありません グループの場合、対応するc
が複数存在する可能性があります。 。上記は最小のcを返します。代わりに最大のことをしたい場合
order by a, c desc