W z góry na dół metoda początkowe zapytanie powinno wybierać tylko pierwiastki (elementy bez rodziców), więc zapytanie zwraca każdy wiersz tylko raz:
with recursive top_down as (
select id, parent, text
from test
where parent is null
union all
select t.id, t.parent, concat_ws('/', r.text, t.text)
from test t
join top_down r on t.parent = r.id
)
select id, text
from top_down
where id = 4 -- input
Jeśli Twoim celem jest znalezienie konkretnego przedmiotu, oddolne podejście jest bardziej wydajne:
with recursive bottom_up as (
select id, parent, text
from test
where id = 4 -- input
union all
select r.id, t.parent, concat_ws('/', t.text, r.text)
from test t
join bottom_up r on r.parent = t.id
)
select id, text
from bottom_up
where parent is null
Usuń warunki finalne w obu zapytaniach, aby zobaczyć różnicę.
Przetestuj to w rextesterze.