RIGHT JOIN keyword allows you to return all records from the right table, and only those records from the left table that match the record.

SELECT Orders.OrderID, Employees.LastName, Employees.FirstName  
FROM Orders  
RIGHT JOIN Employees  
ON Orders.EmployeeID = Employees.EmployeeID  

Example

OrderIDCustomerIDEmployeeIDOrderDateShipperID
10308211996-09-183
103093781996-09-191
103107711996-09-202
And a selection from the “Employees” table:
EmployeeIDLastNameFirstNameBirthDatePhoto
1DavolioNancy12/8/1968EmpID1.pic
2FullerAndrew2/19/1952EmpID2.pic
3LeverlingJanet8/30/1963EmpID3.pic
Result
OrderIdLastNameFirstName
10308DavilioNancy
NULLFullerAndreq
10310DavilioNancy
NULLLeverlingJanet