Mysql
 sql >> Database >  >> RDS >> Mysql

Profondità in MySQL e alberi delle tabelle di chiusura

Aggiungi profondità+1 al primo SELECT.

INSERT INTO closure_tree_path (ancestor, descendant, depth)
SELECT ancestor, '{$node_id}', depth+1 FROM closure_tree_path
WHERE descendant = '{$parent_id}'
UNION ALL SELECT '{$node_id}', '{$node_id}', 0;