connect by
を使用できます 条項。
あなたの場合、SQLは次のようになります。
select child, parent, level
from family_tree
connect by prior parent = child
connect by
を使用できます 条項。
あなたの場合、SQLは次のようになります。
select child, parent, level
from family_tree
connect by prior parent = child