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


Please Help Members By Posting Answers For Below Questions

What is the architecture of ms sql reporting service?

517


What is cross join in sql server joins?

587


Explain Geography datatype in SQL Server

623


Explain query editor regions

610


how can you attach more than 20 ldf files in sql server

1565






What is difference in performance between insert top (n) into table and using top with insert?

528


What is difference between foreign key and unique key?

546


What are the reporting services components?

92


What is the syntax for encrypting a column in SQL Server?

551


What is the full form of ddl?

502


What is sql injection? How to protect against sql injection attack?

551


What do you mean by acid?

568


What are joins in sql and what are the different types of joins?

547


What is order of B+tree?

651


role of sql sever 2005 in database rather than any other database

1506