Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
If you are doing an inner join does it matter which order the tables are in? Is
Table1 inner join Table2
any different from
Table2 inner join Table1
Could there be any difference?
Brent
No, there cannot be. It just means rows between the two tables with the same value in the 'joined' columns. So the order in which the table names are mentioned doesn't matter. However, for Right and Left joins, it does matter.