What is the differecne between equi-join and inner-join and
natural join..Is there any difference or all are same?
Answer Posted / mobin sathupally
All are same.
Eg:
SELECT
*
FROM Emp INNER JOIN Emp1
ON eid=id
SELECT
*
FROM Emp EQUI JOIN Emp1
ON eid=id
SELECT
*
FROM Emp NATURAL JOIN Emp1
ON eid=id
| Is This Answer Correct ? | 18 Yes | 71 No |
Post New Answer View All Answers
Describe the left outer join & right outer join. : sql server database administration
What is a view and what are its advantages?
How optimize sql query with multiple joins in sql server?
How to create a view with data from multiple tables?
What is the security principal at the server level that represents your session?
How secure is sql server database?
How to return the second 5 rows in ms sql server?
What is lock escalation and what is its purpose?
Tell me about joins in database system and explain each in detail.
Write SQL queries on Self Join and Inner Join.
How do I find my localdb version?
Define union, union all, minus, intersect?
Why I have to use stored procedures?
What is nolock?
Explain about thread and memory management process of SQL?