what are the uses of the different join operations in sql? Like i want to know why do we need the different inner and outer joins?
|
|
The only type of join you really need is You could also ask: Why have both Sometimes it's easier to swap Another thing you could ask is: In logic why do we have Similarly, if you want to do When do you use each one? Here's a simplified rule:
|
||||
|
|
|
This link should clear all you JOIN related doubts: http://www.codinghorror.com/blog/2007/10/a-visual-explanation-of-sql-joins.html |
||||
|
|
|
|||
|
|
|
To make the other answers clearer - YOU GET DIFFERENT RESULTS according to the join you choose, when the columns you're joining on contain null values - for example. So - for each Real-life scenario there is a join that suits it (either you want the lines without the data or not in the null values example). |
|||
|
|
|
My answer assumes 2 tables joined on a single key:
You can add Use these in order to only get what you want to get. |
|||
|
|