Hello All,
I have had a question come up and was wondering if anyone knew the answer. Given the following query:
Select * From Table1 Left Outer Join Table2 On Table1.Id = Table2.Id
Is there any difference if the On statement was switched? Such as:
Select * From Table1 Left Outer Join Table2 On Table2.Id = Table1.Id
Thanks
I have had a question come up and was wondering if anyone knew the answer. Given the following query:
Select * From Table1 Left Outer Join Table2 On Table1.Id = Table2.Id
Is there any difference if the On statement was switched? Such as:
Select * From Table1 Left Outer Join Table2 On Table2.Id = Table1.Id
Thanks
Comment