How to write a procedure for displying the data in a TREE
or (PARENT and CHILD ) relationship , for ex: A is the main
project id, for this project B,C,D are sub tasks(sub
project id's) for B the sub tasks are e,f,g and for c is
h ,i ,j and for d is k,l,m
now i need to display the o/p in a TREE fashion

pls help me ,
thanks in advance
surendra

Answers were Sorted based on User's Feedback



How to write a procedure for displying the data in a TREE or (PARENT and CHILD ) relationship , fo..

Answer / hussain

hi,
i think this may help u,


select lpad('',level*4)||projectid,subtask from xyz
start with projectid ='&a' connect by prior projectid=subproid

Is This Answer Correct ?    2 Yes 0 No

How to write a procedure for displying the data in a TREE or (PARENT and CHILD ) relationship , fo..

Answer / rv

You can use Select..ConnectBY.. PRIOR clause in Oracle to
generate the data in tree structure. Google for the apt
syntax and usage.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

What is the life of an sql statement?

0 Answers  


What are tables and fields?

0 Answers  


What are the different sql commands?

0 Answers  


Explain the select statement in sql?

0 Answers  


What is the maximum number of rows in sql table?

0 Answers  






What is the purpose of the primary key?

0 Answers  


What are tables in sql?

0 Answers  


What is a dynamic query?

0 Answers  


Is inner join faster than left join?

0 Answers  


What is a primary key called that is made up of more than one field?

0 Answers  


What will you get by the cursor attribute sql%found?

0 Answers  


what is switch column,colums cost in oracle?

0 Answers   Metric Stream,


Categories