I have 2 tables A and B and there is a left outer join between them.
A LEFT OUTER JOIN B ON A.ID = B.CODE
Will swapping the left and right operands of =
in the ON condition ...
A LEFT OUTER JOIN B ON B.CODE = A.ID
... change anything performance wise or return different set of rows?