I am wondering how to differentiate all these different joins ...
|
|
Simple Example: Lets say you have a Students table, and a Lockers table. Each student can be assigned to a locker, so there is a "LockerNumber" column in the student table. More than one student could potentially be in a single locker, but especially at the begining of the school year, you may have some incoming students without lockers and some lockers that have no students assigned. For the sake of this example, lets say you have 100 students, 70 of which have lockers. You have a total of 50 lockers, 40 of which have at least 1 student. INNER JOIN
is equivalent to "show me all students with lockers". LEFT OUTER JOIN would be "show me all students, with their corresponding locker if they have one". RIGHT OUTER JOIN would be "show me all lockers, and the students assigned to them if there are any". FULL OUTER JOIN would be silly and probably not much use. CROSS JOIN is also fairly silly in this scenario. |
|||||||||||||||||||
|
|
There are three basic types of join:
Often you see will the Here is an example of when you might want to use each type:
|
||||
|
|
|
There are only 4 kinds:
A "cross join" or "cartesian join" is simply an inner join for which no join conditions have been specified, resulting in all pairs of rows being output. Thanks to RusselH for pointing out FULL joins, which I'd omitted. |
|||||||||||||||
|
|
Have a look at the tutorials at www.w3schools.com. They have a lot of useful tutorials about SQL (and other technologies as well), including tutorials and examples about the different types of JOINs. |
|||||
|
|
|
See the link below: its a great Example with visual representation. http://www.codeproject.com/KB/database/Visual_SQL_Joins.aspx |
|||
|
|
|
Have a look at the wikipedia entry for Join (SQL) |
|||
|
|
|
Here is an excellent easy to follow explanation: http://www.w3schools.com/sql/default.asp |
|||
|
|
|
LEFT and RIGHT are both types of outer joins. Inner join is the default -- rows from both tables must match the join condition. |
|||
|
|
|
Check out Join (SQL) on Wikipedia
|
||||
|
|