What makes a given table the left table?
Is it that the table is indicated in the \"From\" part of the query?
Or, is it the left table because it is on the l
The right table is always the table that you are joining on. So yes, both of your statements are equivalent.
JOIN [Table] ON ...
[Table] is always the right table.