vote up 12 vote down star
1

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?

flag

10 Answers

vote up 8 vote down check

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

link|flag
Can you please provide more detail? – Shabbyrobe Aug 28 at 4:09
Check this article. devx.com/dbzone/Article/17403/0/page/5 – Ólafur Waage Aug 28 at 9:52
3  
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 at 2:08
vote up 4 vote down

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

link|flag
vote up 3 vote down

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

link|flag
vote up 1 vote down

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.

link|flag
vote up 13 vote down

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.

link|flag
1  
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? – MatthieuF Mar 27 at 15:32
+1, left & right outer joins are exactly the same only opposite. – Nathan Koop Mar 27 at 15:59
@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 at 17:23
vote up 2 vote down

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.

link|flag
vote up 1 vote down

This is more of a question within a question.

Does this hold?

Tbl_A <right outer join> Tbl_B

is the same as

Tbl_B <left outer join> Tbl_A
link|flag
It really should ... – Daniel Brückner Mar 27 at 14:39
yes, if only those two tables are in the join. – dotjoe Mar 27 at 14:39
vote up 3 vote down

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 thier main items at the bottom thus in thier 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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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