To give one example where a RIGHT JOIN may be useful.
Suppose that there are three tables for People, Pets, and Pet Accessories. People may optionally have pets and these pets may optionally have accessories
DECLARE @Persons TABLE(
PersonName varchar(10) PRIMARY KEY
)
INSERT INTO @Persons
SELECT 'Alice' UNION ALL
SELECT 'Bob' UNION ALL
SELECT 'Charles'
DECLARE @Pets TABLE(
PetName varchar(10) PRIMARY KEY,
PersonName varchar(10)
)
INSERT INTO @Pets
SELECT 'Rover', 'Alice' UNION ALL
SELECT 'Lassie', 'Alice' UNION ALL
SELECT 'Fifi', 'Charles'
DECLARE @PetAccessories TABLE(
AccessoryName varchar(10) PRIMARY KEY,
PetName varchar(10)
)
INSERT INTO @PetAccessories
SELECT 'Ball', 'Rover' UNION ALL
SELECT 'Bone', 'Rover' UNION ALL
SELECT 'Mouse', 'Fifi'
If the requirement is to get a result listing all people irrespective of whether or not they own a pet and information about any pets they own that also have accessories.
This doesn't work (Excludes Bob)
SELECT P.PersonName,
Pt.PetName,
Pa.AccessoryName
FROM @Persons P
LEFT JOIN @Pets Pt
ON P.PersonName = Pt.PersonName
INNER JOIN @PetAccessories Pa
ON Pt.PetName = Pa.PetName
This doesn't work (Includes Lassie)
SELECT P.PersonName,
Pt.PetName,
Pa.AccessoryName
FROM @Persons P
LEFT JOIN @Pets Pt
ON P.PersonName = Pt.PersonName
LEFT JOIN @PetAccessories Pa
ON Pt.PetName = Pa.PetName
This does work (but the syntax is perhaps less understandable)
SELECT P.PersonName,
Pt.PetName,
Pa.AccessoryName
FROM @Persons P
LEFT JOIN @Pets Pt
INNER JOIN @PetAccessories Pa
ON Pt.PetName = Pa.PetName
ON P.PersonName = Pt.PersonName
All in all probably easiest to use a RIGHT JOIN
SELECT P.PersonName,
Pt.PetName,
Pa.AccessoryName
FROM @Pets Pt
JOIN @PetAccessories Pa
ON Pt.PetName = Pa.PetName
RIGHT JOIN @Persons P
ON P.PersonName = Pt.PersonName