LEFT OUTER JOIN Example :
Objective: In this example, we will retrieve all the records from the Emp table(Left Table). If there is a matching Ecode in the Project table(Right Table) and the Emp table, the value will be taken from the Project table else Project table will give NULL value.
SELECT e.Ecode, e.FirstName, e.LastName, p.Project FROM Tbl_Emp as e LEFT JOIN Tbl_Project as p on e.Ecode = P.Ecode;
Output: