2
Reply

What is a FULL OUTER JOIN in SQL?

Ajeet Mishra

Ajeet Mishra

9 years ago
402
0
Reply

    http://www.w3schools.com/sql/sql_join_full.asp

    Munesh Sharma
    8 years ago
    0

    This join combines left outer join and right after join. It returns row from either table when the conditions are met and returns null value when there is no match. Example - Select * From Table1 FULL Join Table2 ON table1.ColumnName = Table2.ColumnName

    Ajeet Mishra
    9 years ago
    0