1
Reply

What is the difference between left outer join and right outer join?

Subash

Subash

Jul 14, 2016
314
0

    LEFT OUTER JOIN / LEFT JOIN returns all of the rows from LEFT table and the corresponding matching rows from the right table. RIGHT OUTER JOIN / RIGHT JOIN returns all the rows from the RIGHT table and the corresponding matching rows from the left table. If table does not have matching record then NULL value assigned for that column.

    Abhinav Abhishek
    March 17, 2017
    2