Oracle
 sql >> Database >  >> RDS >> Oracle

come ottenere gli antenati radice in una query gerarchica usando Oracle-10g?

In un ambiente di database le chiavi esterne al livello più alto molto probabilmente saranno null in questo modo:

| pid  | cid  |
|------*------|
| null |  2   |
|  2   |  3   |
|  3   |  4   |
| null |  6   |
|  6   |  7   |
|  7   |  8   |

Quindi consiglierei di usare qualcosa come:

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;

violino