When doing an SQL query,
is there any significant (or any at all) difference in performance between 'WHERE' and 'ON'?
I know there is a significant difference in the resulting set between the two for a LEFT or RIGHT JOIN.
What about an INNER JOIN?
Is there any drawback to using 'ON' for each of my selects rather than 'WHERE' at the end?