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