Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Tree Query question
I'm trying to work through a tree query in PL*SQL and getting nowhere. Can anybody give me a hand with this? E-mail replies are encouraged, even if you also reply to the newsgroup.
Thanks.
Sincerely,
Randall
Data look something like this.
Job Parent Spent
10 NULL 100 -- top level has NULL parent 20 10 500 -- child 27 20 700 -- grandchild 32 27 50 -- great grandchild 21 20 200 -- a 2nd branch from job 20
There is no limit to the breadth or depth of the tree, although as a practical matter I suspect about 10 or 15 levels will be the depth limit reached and 20 or 30 will be the practical limit for breadth.
I want to construct a report similar to this, but can't see the coding logic to doing it. Can you point me in the right direction?
Job Spent_by_Job_&_Progeny 10 1550 20 1450 21 200 27 750 32 50Received on Mon Nov 10 1997 - 00:00:00 CST
![]() |
![]() |