2
Reply

What is a LEFT OUTER JOIN in SQL?

Ajeet Mishra

Ajeet Mishra

Sep 08, 2015
423
0

    http://www.dofactory.com/sql/left-outer-join

    Munesh Sharma
    May 31, 2016
    0

    This join returns all the rows from the left table in conjunction with the matching rows from the right table. If there are no columns matching in the right table, it returns NULL values. Example - Select * From Table1 LEFT Join Table2 ON table1.ColumnName = Table2.ColumnName

    Ajeet Mishra
    September 08, 2015
    0