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 |
Define union, minus, union all, intersect ?
How to download oracle sql developer?
how many values can the set function of mysql take? : Sql dba
What is clause?
Wat is SGA ?
How do you update a table in sql?
what is sub-query? : Transact sql
What is meant by <> in sql?
i have a table like this. cityno cityname mails 1 BANGALORE 8KM 2 HSR LAYOUT 20KM 3 MEJISTIC 30KM 4 JAYADEVA 55KM 5 ITPL 80KM 6 HEBBAL 115KM I HAVE DATA LIKE THIS I WANT O/P LIKE THIS DISTANCE NO.OFCITY 0-50KM 3 51-100KM 2 101-150KM 4 AND SO ON pls give me answer. i want urgent
Why is normalization important?
What are the query optimization techniques?
Where is sql database stored?