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
Is it possible to create trigger on views?
Which is the best place or learning center for MS SQL?????In Bangladesh?????
Write a SQL query to make a column as unique?
How to create a dynamic cursor with the dynamic option?
What are the essential components of sql server service broker?
What is policy based management (pbm)? : sql server database administration
Where are sql server usernames and passwords stored in the sql server?
Explain candidate key, alternate key, and composite key?
How to optimize stored procedures in sql server?
Determine when to use stored procedure to complete sql server tasks?
What is blocking?
In what sequence sql statement is processed?
What is the use of group by clause?
What is provisioning, billing and metering, and connection routing concepts in the service layer?
Explain what are the database objects? : SQL Server Architecture