Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use INNER JOIN and LEFT OUTER JOINs all the time. However, I never seem to need RIGHT OUTER JOINs, ever.

I've seen plenty of nasty auto-generated SQL that uses right joins, but to me, that code is impossible to get my head around. I always need to rewrite it using inner and left joins to make heads or tails of it.

Does anyone actually write queries using Right joins?

share|improve this question

10 Answers

up vote 23 down vote accepted

It depends on what side of the join you put each table.

If you want to return all rows from the left table, even if there are no matches in the right table... you use left join.

If you want to return all rows from the right table, even if there are no matches in the left table, you use right join.

Interestingly enough, I rarely used right joins.

share|improve this answer
8  
I always find it more logical to start with the table which has all of the non-orphan items, so I always end up using LEFT JOIN as well. I wonder if its a cultural thing? – Matthew Farwell Mar 27 '09 at 15:32
4  
+1, left & right outer joins are exactly the same only opposite. – Nathan Koop Mar 27 '09 at 15:59
1  
@MatthieuF: Maybe it is cultural. Using right join feels like doing something in an opposite way. It comes without thinking at least to me, to always arrange my joins in a way so that (if needed) left join fits the situation. I don't know why? :-) – Petros Mar 27 '09 at 17:23

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 
share|improve this answer
+1 Very interesting, thank you for your work. – Igor Oct 17 '11 at 1:26
nice explanation. – Voislav Sauca Apr 19 '12 at 9:51

You usually use RIGHT OUTER JOINS to find orphan items in other tables.

share|improve this answer
Can you please provide more detail? – Shabbyrobe Aug 28 '09 at 4:09
Check this article. devx.com/dbzone/Article/17403/0/page/5 – Ólafur Waage Aug 28 '09 at 9:52
16  
I find this answer makes right joins sound special when they're not. Left and right outer joins are mirror images of each other - both useful for finding orphaned items. The choice of which to use is simply based on which table you want all rows from, even if there are no matches. – Cory House Oct 4 '09 at 2:08

No, I don't for the simple reason I can accomplish everything with inner or left joins.

share|improve this answer

Sadly yes, an entire Oracle team I work with use them.

share|improve this answer

Our standard practice here is to write everything in terms of LEFT JOINs if possible. We've occasionally used FULL OUTER JOINs if we've needed to, but never RIGHT JOINs.

share|improve this answer

The only time I use a Right outer join is when I am working on an existing query and need to change it (normally from an inner). I could reverse the join and make it a left and probably be ok, but I try and reduce the amount of things I change when I modify code.

share|improve this answer

I only use left, but let me say they are really the same depending how how you order things. I worked with some people that only used right, becasue they built queries from the inside out and liked to keep their main items at the bottom thus in their minds it made sense to only use right.

I.e.

Got main thing here

need more junk

More Junk right outer join Main Stuff

I prefer to do main stuff then junk... So left outer works for me.

So whatever floats your boat.

share|improve this answer

Rarely, as stated you can usually reorder and use a left join. Also I naturally tend to order the data, so that left joins work for getting the data I require. I think the same can be said of full outer and cross joins, most people tend to stay away from them.

share|improve this answer

You can accomplish the same thing using LEFT or RIGHT joins. Generally most people think in terms of a LEFT join probably because we read from left to right. It really comes down to being consistent. Your team should focus on using either LEFT or RIGHT joins, not both, as they are essentially the same exact thing, written differently.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.