bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL RIGHT JOIN Keyword

Concept visual

SQL RIGHT JOIN Keyword

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

RIGHT JOIN Keyword

Previous

❮ SQL Keywords

Next

Right Join

The RIGHT JOIN

command returns all rows from the right table, and the matching records from the left table. The result is NULL from the left side, when there is no match. The following SQL will return all employees, and any orders they might have placed:

Example

SELECT Orders.OrderID, Employees.LastName, Employees.FirstName

FROM Orders

Formula

RIGHT JOIN Employees ON Orders.EmployeeID = Employees.EmployeeID
ORDER BY Orders.OrderID;

Note:

The RIGHT JOIN

keyword returns all records from the right table (Employees), even if there are no matches in the left table (Orders).

Previous

❮ SQL Keywords

Next

Previous

SQL CREATE PROCEDURE Keyword

Next

SQL SELECT TOP, LIMIT and ROWNUM Keywords