InterviewSolution
Saved Bookmarks
| 1. |
Describe The Left Outer Join & Right Outer Join. |
|
Answer» LEFT Outer join Retrieves the all RECORDS from LEFT table and matching from the RIGHT table, and null values where is no MATCH. Right Outer Join just OPPOSITE. Left Outer join Retrieves the all records from LEFT table and matching from the RIGHT table, and null values where is no match. Right Outer Join just opposite. |
|