nếu bạn muốn nhận tất cả các cấp độ con của một phụ huynh cụ thể thì bạn nên thử điều này
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)