Loading lesson path
Concept visual
Start at both ends
❮ SQL Keywords
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:
SELECT Orders.OrderID, Employees.LastName, Employees.FirstNameFormula
RIGHT JOIN Employees ON Orders.EmployeeID = Employees.EmployeeIDORDER BY Orders.OrderID;keyword returns all records from the right table (Employees), even if there are no matches in the left table (Orders).
❮ SQL Keywords