Given a table tree
, id is identifier of the tree node and p_id is
its parent node's id.
+----+------+ | id | p_id | +----+------+ | 1 | null | | 2 | 1 | | 3 | 1 | | 4 | 2 | | 5 | 2 | +----+------+Each node in the tree can be one of three types:
Write a query to print the node id and the type of the node. Sort your output by the node id. The result for the above sample is:
+----+------+ | id | Type | +----+------+ | 1 | Root | | 2 | Inner| | 3 | Leaf | | 4 | Leaf | | 5 | Leaf | +----+------+
Explanation
1 / \ 2 3 / \ 4 5
Note
If there is only one node on the tree, you only need to output its root attributes.