đây là SQL đã làm việc cho tôi để lấy đường dẫn "breadcrumb" từ bất kỳ điểm nào trong cây. Hy vọng nó sẽ hữu ích.
SELECT ancestor.id, ancestor.title, ancestor.alias
FROM `categories` child, `categories` ancestor
WHERE child.lft >= ancestor.lft AND child.lft <= ancestor.rgt
AND child.id = MY_CURRENT_ID
ORDER BY ancestor.lft
Kath