RIGHT JOIN

RIGHT JOIN — Returns all rows from the right table and the matched rows from the left table.

RIGHT JOIN RIGHT JOIN
SELECT
FROM table1
RIGHT JOIN table2
ON table1.column_name = table2.column_name;

Related concepts

RIGHT JOIN — Structure map

Clickable & Draggable!

RIGHT JOIN — Related pages: