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

PostgreSQL :mise à jour avec auto-jointure externe gauche ignorée

Il vous manque juste une connexion WHERE clause :

UPDATE catalog_category c
SET    leaf_category = true
FROM   catalog_category c1 
LEFT   JOIN catalog_category c2 ON c1.id = c2.parent_id
WHERE  c.id = c1.id
AND    c2.parent_id IS NULL;

Ce formulaire avec NOT EXISTS est probablement plus rapide, en faisant de même :

UPDATE catalog_category c
SET    leaf_category = true
WHERE  NOT EXISTS (
    SELECT FROM catalog_category c1
    WHERE  c1.parent_id = c.id
    );

Le manuel pour UPDATE .

Connexe :