Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

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;