In een databaseomgeving zullen de externe sleutels op het hoogste niveau hoogstwaarschijnlijk nulls zijn, zoals:
| pid | cid |
|------*------|
| null | 2 |
| 2 | 3 |
| 3 | 4 |
| null | 6 |
| 6 | 7 |
| 7 | 8 |
Dus ik zou aanraden iets te gebruiken als:
select connect_by_root(t1.cid) as startpoint,
t1.cid as rootnode
from your_table t1
where connect_by_isleaf = 1
start with t1.cid in (8, 4)
connect by prior t1.pid = t1.cid;