获取MySQL / MariaDB关系表中给定父节点的所有子节点(及其子节点)

时间:2016-12-13 04:38:42

标签: mysql sql database tree mariadb

我有一张这样的表:

parent, child
0 2
0 8
2 3
2 6
3 4
3 5
6 7
6 9
9 10

我正在寻找一个查询来选择给定父级的子树,即如果给定的父级是“6”,则输出必须是:{10,9,7,6}

1 个答案:

答案 0 :(得分:2)

谢谢这个。在@pv:=' 6'中指定的值应该设置为你想要找到它的所有后代的父类的id。

您也可以查看实时Demo updated

            select  Parent, concat ( "{" ,Parent,",",GROUP_CONCAT(concat (child )SEPARATOR ','),"}")   as Child
            from    (select * from #TableName
                     order by parent, child) s,
                    (select @pv := '6') initialisation
            where   find_in_set(parent, @pv) > 0
            and     @pv := concat(@pv, ',', child);
  

输出:{6,7,9,10}

对于将父级显示为一列的显示子项,请使用以下查询:

            select parent as child from tchilds where parent = @pv2
            union
            select  Child
            from    (select * from tchilds
                     order by parent, child) s,
                    (select @pv2 := '6') initialisation
            where   find_in_set(parent, @pv2) > 0
            and     @pv2 := concat(@pv2,',', child)
  

输出

enter image description here

如果您仍有任何问题或疑虑,请告知我们。