What is the difference between INNER JOIN and OUTER JOIN?
|
|
|
Assuming you're joining on columns with no duplicates, which is by far the most common case:
Examples Suppose you have two Tables, with a single column each, and data as follows:
Note that (1,2) are unique to A, (3,4) are common, and (5,6) are unique to B. Inner join An inner join using either of the equivalent queries gives the intersection of the two tables, i.e. the two rows they have in common.
Left outer join A left outer join will give all rows in A, plus any common rows in B.
Full outer join A full outer join will give you the union of A and B, i.e. All the rows in A and all the rows in B. If something in A doesn't have a corresponding datum in B, then the B portion is null, and vice versa.
|
|||||||||||||||||||||
|
|
I recommend Jeff's blog article. The best description I've ever seen, plus there is a visualization, e.g.: Inner Join:
Full Outer Join:
|
||||
|
The following was taken from the article "MySQL - LEFT JOIN and RIGHT JOIN, INNER JOIN and OUTER JOIN" by Graham Ellis on his blog Horse's Mouth. In a database such as MySQL, data is divided into a number of tables which are then connected ( First, some sample data:
REGULAR JOIN If we do a regular JOIN (with none of the keywords INNER, OUTER, LEFT or RIGHT), then we get all records that match in the appropriate way in the two tables, and records in both incoming tables that do not match are not reported:
LEFT JOIN If we do a LEFT JOIN, we get all records that match in the same way and IN ADDITION we get an extra record for each unmatched record in the left table of the join - thus ensuring (in this example) that every PERSON gets a mention:
RIGHT JOIN If we do a RIGHT JOIN, we get all the records that match and IN ADDITION an extra record for each unmatched record in the right table of the join - in my example, that means that each property gets a mention even if we don't have seller details:
An INNER JOIN does a full join, just like the first example, and the word OUTER may be added after the word LEFT or RIGHT in the last two examples - it's provided for ODBC compatibility and doesn't add an extra capabilities. |
||||
|
|
|
A (left) inner join only shows rows if there is a matching record on the other (right) side of the join. A (left) outer join shows rows for each record on the left hand side, even if there are no matching rows on the other (right) side of the join. If there is no matching row, the columns for the other (right) side would show NULLs. |
|||
|
|
|
Joins can be categorized as: Inner joins (the typical join operation, which uses some comparison operator like = or <>). These include equi-joins and natural joins. Inner joins use a comparison operator to match rows from two tables based on the values in common columns from each table. For example, retrieving all rows where the student identification number is the same in both the students and courses tables. Outer joins. Outer joins can be a left, a right, or full outer join. Outer joins are specified with one of the following sets of keywords when they are specified in the FROM clause: LEFT JOIN or LEFT OUTER JOIN -The result set of a left outer join includes all the rows from the left table specified in the LEFT OUTER clause, not just the ones in which the joined columns match. When a row in the left table has no matching rows in the right table, the associated result set row contains null values for all select list columns coming from the right table. RIGHT JOIN or RIGHT OUTER JOIN - A right outer join is the reverse of a left outer join. All rows from the right table are returned. Null values are returned for the left table any time a right table row has no matching row in the left table. FULL JOIN or FULL OUTER JOIN - A full outer join returns all rows in both the left and right tables. Any time a row has no match in the other table, the select list columns from the other table contain null values. When there is a match between the tables, the entire result set row contains data values from the base tables. Cross joins - Cross joins return all rows from the left table, each row from the left table is combined with all rows from the right table. Cross joins are also called Cartesian products. (A Cartesian join will get you a Cartesian product. A Cartesian join is when you join every row of one table to every row of another table. You can also get one by joining every row of a table to every row of itself.) |
|||||||||
|
|
Inner joins require that a record with a related ID exist in the joined table. Outer joins will return records for the left side even if nothing exists for the right side. For instance, you have an Orders and an OrderDetails table. They are related by an "OrderID". Orders
OrderDetails
The request
will only return Orders that also have something in the OrderDetails table. If you change it to OUTER LEFT JOIN
then it will return records from the Orders table even if they have no OrderDetails records. You can use this to find Orders that do not have any OrderDetails indicating a possible orphaned order by adding a where clause like |
||||
|
|
in simple words inner join retrieve the matched rows only where as outer join retrieve the matched rows from one table and all rows in other table ....the result depend on which one you are using LEFT ( MATCHED ROWS IN RIGHT TABLE AND ALL ROWS IN LEFT TABLE ) RIGHT ( MATCHED ROWS IN LEFT TABLE AND ALL ROWS IN RIGHT TABLE ) or FULL ( ALL ROWS IN ALL TABLES IT DOESN'T MATTERS EVEN MATCH IS THERE OR NOT ) |
|||
|
|
|
You use INNER JOIN to return all rows from both tables where there is a match. ie. in the resulting table all the rows and colums will have values. In OUTER JOIN the relulting table may have empty colums. Outer join may be either LEFT or RIGHT LEFT OUTER JOIN returns all the rows from the first table, even if there are no matches in the second table. RIGHT OUTER JOIN returns all the rows from the second table, even if there are no matches in the first table.. |
|||
|
|
Inner join requires there is at least a match in comparing the two tables. For example, table A and table B which implies A ٨ B (A intersection B). Left outer join and left join are the same. It gives all the records matching in both tables and all possibilities of the left table. Similarly, right outer join and right join are the same. It gives all the records matching in both tables and all possibilities of the right table. Full join is the combination of left outer join and right outer join without duplication. |
||||
|
|
protected by Kev♦ Jul 21 '12 at 21:51
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.



