Mysql Joins
Mysql Joins
A JOIN clause is used to combine rows from two or more tables, based on a related
column between them.
The LEFT JOIN keyword returns all records from the left table (table1), and the matching
records (if any) from the right table (table2).
The RIGHT JOIN keyword returns all records from the right table (table2), and the matching
records (if any) from the left table (table1).