Controleer dit. De waarde die is opgegeven in @pv :='6' moet worden ingesteld op de id van de ouder waarvan u alle nakomelingen wilt vinden.
u kunt ook live Demo bijgewerkt bekijken
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);
Gebruik onderstaande zoekopdracht voor weergave van onderliggende items met ouder in één kolom:
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)
laat het ons weten als je nog vragen of opmerkingen hebt.