My question is that when I have a SELECT with more than one JOIN. Where am I supposed to put the ON clause?
For example:
- when it's an inner join after an inner join
- when it's an inner join after a left join
- when it's a left join after an inner join
In the first example, I've seen people put the ON clause right after each joins. In the second example, I've seen people put all the ON clause after the last JOIN. So right now I'm a little bit confused on where to put it and does it give me the same answer even if it is put in different places.