Update README.md

This commit is contained in:
GowthamRaj K
2021-07-29 08:02:16 +05:30
committed by GitHub
parent 2bcd23e55a
commit 8227b7c741
+11
View File
@@ -530,3 +530,14 @@ There are different types of joins available in SQL
## 1) INNER JOIN
SELECT table1.column1,table1.column2,table2.column1,....
FROM table1
INNER JOIN table2
ON table1.matching_column = table2.matching_column;
table1: First table.
table2: Second table
matching_column: Column common to both the tables.