我有一张这样的桌子:

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}

最佳答案

检查这个。@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)

输出
mysql - 在MySQL/MariaDB关系表中获取给定父节点的所有子项(及其子项)-LMLPHP
如果您还有任何问题或疑虑,请告诉我们。

关于mysql - 在MySQL/MariaDB关系表中获取给定父节点的所有子项(及其子项),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41113828/

10-13 08:22