From 788490c4e524d97792aaaffae2b89436686b6990 Mon Sep 17 00:00:00 2001 From: GowthamRaj K <43011442+gowthamrajk@users.noreply.github.com> Date: Thu, 29 Jul 2021 08:06:00 +0530 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index cbd985b..f6984ef 100644 --- a/README.md +++ b/README.md @@ -576,7 +576,17 @@ There are different types of joins available in SQL − table2: Second table matching_column: Column common to both the tables. + +## 5) ## 6) CARTESIAN JOIN + SELECT table1.column1 , table1.column2, table2.column1... + FROM table1 + CROSS JOIN table2; + + + table1: First table. + table2: Second table +