si vous voulez obtenir tous les enfants de niveau d'un parent particulier, vous devriez essayer ceci
select id,
name,
parent
from (select * from tablename
order by parent, id) tablename,
(select @pv := '1') initialisation
where find_in_set(parent, @pv) > 0
and @pv := concat(@pv, ',', id)