PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

PostgreSQL:Update mit Left Outer Self Join wird ignoriert

Ihnen fehlt lediglich ein verbindendes WHERE Klausel:

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;

Dieses Formular mit NOT EXISTS ist wahrscheinlich schneller, wenn Sie dasselbe tun:

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

Das Handbuch für UPDATE .

Verwandte: