A “RIGHT JOIN” (also known as a “RIGHT OUTER JOIN”) is a type of SQL join that returns all the records from the right (second) table and the matching records from the left (first) table. If there is no match in the left table, NULL values are returned for the columns from the left table. […]