Join Types – inner, left outer, right outer and outer join

Inner Join:

This join type will allow only the matched rows in the result and unmatched rows of both left and right side of the relation are excluded.

Left Outer Join:

This join type will allow the matched rows and unmatched rows of left side relation in the result along with null values for the columns of right side relation.

Left outer join represents deficiency on the right relation.

Right Outer Join:

This join type will allow the matched rows unmatched rows of right side relation in the result along with null values for the columns of left side relation.

Right outer join represent deficiency in left side relation.

Full Outer or Outer Join:

This join type will allow the matched rows and unmatched rows of both left and right relation along with null values for the respective attributes in the result.

One comment

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.