我已經實現了使用MySQL如何檢索檢索作爲一個集合
1
|----- 2
|----- 3
4
|----- 5
|----- 6
|----- 7
id | path | level | parent_id | content |
-------------------------------------------------------------------
1 1 1 NULL xxx
2 1:2 2 1 yyy
3 1:3 2 1 abc
4 4 1 NULL zzz
5 4:5 2 4 yyy
6 4:6 2 4 abc
7 4:6:7 3 6 abc
以下分層數據分層數據假設我只有這些記錄, 如何取回他們在一個樹狀結構,但在一個單一的從最後一棵樹開始收集?
我從查詢期望什麼或存儲過程返回我下面的正是這個順序
id
-----
4
5
6
7
1
2
3
我該怎麼做相同的,但開始的第一棵樹?
id
-----
1
2
3
4
5
6
7
可能是重複的:http://stackoverflow.com/questions/11064913/achieve-hierarchy-parent-child-relationship-in-an-effective-and-easy-way –