pls explain connect by prior with example and its real time
use

Answers were Sorted based on User's Feedback



pls explain connect by prior with example and its real time use..

Answer / anil kumar karasi

sql>Select rownum,rownid,level,empno,ename from emp
connect by prior empno=mgr where mgr is null;

o/p
Rownum Rowid Level empno ename
------ ----- ----- ----- -----
1 AABBBCCDA 1 5678 abcd
2 AABBBCCDB 1 9087 poiu
3 AABBBCCDC 2 8567 QWER
4 AABBBCCDD 2 7321 LKJH
5 AABBBCCDE 3 1284 ZXCV

For more details go through this link
http://www.psoug.org/reference/connectby.html

Is This Answer Correct ?    10 Yes 1 No

pls explain connect by prior with example and its real time use..

Answer / muhammed zaheer

Connect by prior can be used to create heirarchical tree
structure

Is This Answer Correct ?    6 Yes 3 No

pls explain connect by prior with example and its real time use..

Answer / simi

CONNECT BY PRIOR is used for tree-structured queries.
I found a simple & useful explanation here:
http://www.oraclepassport.com
SQL - CONNECT By PRIOR Section

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More Oracle General Interview Questions

What is autonomous transaction?

6 Answers  


How to call a trigger inside a stored procedure?Give an example.

2 Answers  


what is the difference between restoring and recovering?

0 Answers   MCN Solutions,


what is shell?

2 Answers   Microsoft,


What is dictionary cache ?

2 Answers  






What is concurrency in oracle?

0 Answers  


how to create a new database in oracle?

6 Answers   TCS,


Can we create database in oracle using command line ?

0 Answers   MCN Solutions,


Explain what are the type of synonyms?

0 Answers  


write a query to count number of alphabets in given string for example "APPLE" write a query to generate sequence from 50 to 100 write a query to display in single string "ABCD,EFGH,IJKL,PQRS"

7 Answers   British Telecom BT,


Can we call procedure inside function in oracle?

0 Answers  


10)In an RDBMS, the information content of a table does not depend on the order of the rows and columns. Is this statement Correct? A)Yes B)No C)Depends on the data being stored D)Only for 2-dimensional tables

6 Answers   Mind Tree,


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)