Update README.md

This commit is contained in:
GowthamRaj K
2021-07-29 08:06:00 +05:30
committed by GitHub
parent bb56bb95d4
commit 788490c4e5
+10
View File
@@ -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