My database structure
I start with my database.
Pages table
id content
-------------
2 My content
4 Another content
7 Example content
8 Test content
11 Some content
Parents table
id page_id parent_id
--------------------------
1 2 0
2 4 2
3 7 2
4 8 7
5 11 8
parents_table.page_id is connected to pages_table.id.
Question
- Can I with SQL get page_id 11 and climb all the parents of that id until I get to parent_id 0?
- The total number of parents are unknown.
Maybe a virtual table?
This is what I can think of, a virtual table. Just an idea, might not be the right approach.
id parent_id_1 parent_id_2 parent_id_3 parent_id_4 parent_id_5
-----------------------------------------------------------------------------
11 8 7 4 2 0