LEFT JOIN and RIGHT JOIN are types of SQL OUTER JOINs.The LEFT JOIN returns all rows from the left table, and the matched rows from the right table.The RIGHT JOIN returns all rows from the right table, and the matched rows from the left table.LEFT JOIN ensures all rows from the left table appear, while RIGHT JOIN ensures all rows from the right table appear.