I've a table like this with a parent child relation in the same table
AccountID| ParentID | AccountName ---------------------------------------------- 1 | 0 | Root 2 | 1 | Child1 3 | 1 | Child2 4 | 2 | Child3 5 | 4 | Child1 6 | 5 | Child1 7 | 6 | Child1 8 | 6 | Child1
So when I send the account ID 7 I have to get the tables in the order like child,father,grandfather.. that way.. So for 7, I need to get all parets like this
AccountID --------- 7 6 5 4 2 1