PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

PostgreSQL :table de regroupement puis filtrage, avec condition d'inexistence

Utilisez un CTE qui renvoie toutes les lignes où A = C et rejoignez la table :

with cte as (
  select * from tablename
  where "A" = "C"
)  
select distinct t."A", t."B", c."D"
from tablename t left join cte c
on c."A" = t."A" and c."B" = t."B"
order by t."A", t."B"

Voir la démo .
Résultats :

| A   | B   | D   |
| --- | --- | --- |
| x   | 0   | 1   |
| x   | 1   |     |
| y   | 0   |     |
| y   | 1   | 0   |