From 5ea973a2b6e5c7138aeaece50712287a8613cfab Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Thu, 29 Jul 2021 08:03:19 +0530 Subject: [PATCH] Update README.md --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 7820d9f..8b3d7ff 100644 --- a/README.md +++ b/README.md @@ -542,4 +542,15 @@ There are different types of joins available in SQL − ## 2) LEFT JOIN + SELECT table1.column1,table1.column2,table2.column1,.... + FROM table1 + LEFT JOIN table2 + ON table1.matching_column = table2.matching_column; + + + table1: First table. + table2: Second table + matching_column: Column common to both the tables. + +