SQL RIGHT JOIN Keyword
Last updated
Last updated
The RIGHT JOIN keyword returns all records from the right table (table2), and the matched records from the left table (table1). The result is NULL from the left side, when there is no match.
Note: In some databases RIGHT JOIN is called RIGHT OUTER JOIN.
In this tutorial we will use the well-known Northwind sample database.
Below is a selection from the "Orders" table:
And a selection from the "Employees" table:
SQL RIGHT JOIN Example
The following SQL statement will return all employees, and any orders they might have placed: