Sprawdź to. Wartość podana w @pv :='6' powinna być ustawiona na identyfikator rodzica, dla którego chcesz znaleźć wszystkie jego potomków.
możesz także sprawdzić na żywo Demo zaktualizowane
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);
Aby wyświetlić dzieci z rodzicem w jednej kolumnie, użyj poniższego zapytania:
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)
daj nam znać, jeśli nadal masz jakieś pytania lub wątpliwości.