(or Right Outer Join)
Returns all rows from the right table, and the matched rows from the left table. This is the exact opposite of a LEFT JOIN;
i.e., the results will contain all records from the right table, even if the JOIN condition doesn't find any matching records in the left table.
This means that if the ON clause doesn't match any records in the left table, the JOIN will still return a row in the result for that record in the right table, but with NULL in each column from the left table.