SQL TUTORIALS-
SQL Joins
Introduction-
-β Simple Joins are used in SQL to combine rows from two or more tables based on a related column...
Join Type | Description |
---|---|
INNER JOIN | Please Note- Returns only matching rows from both tables. |
LEFT JOIN | Please Note- Returns all rows from the left table and matching rows from the right. |
RIGHT JOIN | Please Note- Returns all rows from the right table and matching rows from the left. |
FULL OUTER JOIN | Please Note- Returns all rows when there is a match in one of the tables. |
CROSS JOIN | Please Note- Returns cartesian product (every row of table A with every row of table B). |