How to join two tables using left join in SQL.

Step:1

Step:2

Step:3

Step:4

Step:5 Syntax of left join in SQL

SELECT column_name(like that CustomerName and OrderID these are column name step-4)
FROM table1 (Cumstomers is table name)
LEFT JOIN table2 (orders is table name)
ON table1.column_name = table2.column_name;