what is self join and how it works??
Answers were Sorted based on User's Feedback
Answer / alok kumar samartha
The concept of joining a table with itself is called self
join or inner join.It works based on the provided join condition
example:-select e1.empno employee,e2.ename manager from emp
e1,emp e2 where e2.empno=e1.mgr;
Is This Answer Correct ? | 3 Yes | 4 No |
What is function and procedure?
What is string data type in sql?
What is graph sql?
What is the difference between subquery and correlated query?
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?
From an Employee table, how will you display the record which has a maximum salary?
29 Answers Cap Gemini, Exilant, Synechron,
How is a PL/SQL code compiled?
What are the two parts of design view?
What are the different dcl commands in sql?
What is faster join or subquery?
what are aggregate and scalar functions? : Sql dba
What is number function in sql?