vote up 0 vote down star
3

Is an outer join only used for analysis by the developer? I'm having trouble finding a use case for why you would want to include data in two or more tables that is unrelated or does not "match" your select criteria.

flag

2  
most of the response are telling you about LEFT OUTER JOIN, which is the most common one. Go read wiki instead en.wikipedia.org/wiki/Join_(SQL)#Outer_joins/… as it's much more thorough. – Robert Paulson Jul 9 at 1:21

9 Answers

vote up 7 vote down check

An example use case would be to produce a report that shows ALL customers and their purchases. That is, show even customers who have not purchased anything. If you do an ordinary join of customers and purchases, the report would show only those customers with at least one purchase.

link|flag
Would it be accurate to rephrase this as, if you want to get ALL rows in columns that exist in two tables, then the only way is to use an outer join? – hal10001 Jul 9 at 1:37
The use case I described is typically done as a left outer join, you get all rows from the left table (customers) and matching rows from the right (purchases). To guarantee that all rows from BOTH tables are represented in the result, you would use a full outer join. – Kevin Beck Jul 9 at 4:27
vote up 1 vote down

The OUTER JOIN is intended to address the cases where you wish to select a set of records from a primary table, which may or may not have related records contained in a secondary table.

An INNER join would omit from the list any primary records not also represented in the secondary table. Any OUTER JOIN guarantees the visiblity of all qualified primary records.

link|flag
vote up 3 vote down

Here is a very good list of examples by none other than Jeff Atwood - A Visual Explanation of SQL Joins he shows a new representation visually of the SQL joins.

link|flag
+1 @Shadi Almosri a picture is worth thousand words. Specially if you didn't pay attention to sets and Venn diagrams in schoole :) – TheVillageIdiot Jul 9 at 2:37
vote up 1 vote down

The difference between outer and inner joins is primarily that the outer joins retain each record from both the joined tables, whether the join predicate is matched or not. So a use case would need to revolve around knowing about "missing stuff", eg. customers who haven't made purchases, or members who have missing personal details.

link|flag
vote up 0 vote down

One example:

select CustomerName, count(OrderId) as NumOrders
from Customer C
left outer join Order O on O.CustomerId = C.CustomerId
group by CustomerName

Includes customer with no orders. Inner join would drop those customers from the result.

link|flag
vote up 0 vote down

Say you had two tables one for users and one for something like qualifications, you want to do a query that gets all users with their qualifications if they have any. In this case you would use an outer join to get all the users back and those with qualifications. An inner join would only give you the users who had a qualification.

link|flag
vote up 1 vote down

Perhaps you have a users table and an address table related to it, since your users may choose not to enter an address, or they may have several (shipping, street, postal, etc). If you wanted to list all your users, but also display addresses for those that have them, you'd have to use an outer join for the address table.

link|flag
vote up 1 vote down

The "doesn't match" case is useful for optional data. Something which is present for some rows, but not for others.

link|flag
Why the downvote? Is this not accurate? – John Saunders Jul 9 at 6:46

Your Answer

Get an OpenID
or

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