I have a table with a sort of father-son relation
TABLE1
-----------
IDObject
IDObjectFather
Description
Is it possible to list all data, adding a colunm with the level of the current object (number of 'fathers' and 'father or fathers')?
IE:
1, NULL, A
2 , NULL, B
3, 1, C
4, 1, D
5, 3, E
6...