Equi Join: When primary and foreign key relationship exists between the tables that are going to be joined.

Cartesian Join: When tables are joined without giving any join condition.

Inner Join
: The resultant set includes all the rows that satisfy the join condition.

Outer Join
: The resultant set includes the rows which doesn’t satisfy the join condition.  The outer join operator Plus sign (+) will be included in the join condiiton.

Example: SELECT a. column1, a. column2, b.column3….. from a, b where a.column1(+)=b.Column1

Here the rows from table a which doesn’t satisfy the join condition will also be fetched.

No feedback yet

Leave a comment


Your email address will not be revealed on this site.

Your URL will be displayed.
PoorExcellent
(Line breaks become <br />)
(Name, email & website)
(Allow users to contact you through a message form (your email will not be revealed.)