SQL TUTORIALS-
SQL Joins
Introduction-
SQL Joins, SQL Inner Join, SQL Left Join, SQL Right Join, SQL Full Join, SQL join examples
| 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). |