Backboards: 
Posts: 155

SQL-masters: Does the order of the "From" tables matter when there are joins?

for example, if I have a query with the following:

From Table1 Left Outer Join
Table2 ON [Table1].id = [Table2].id Left Outer Join
Table3 ON [Table2].id = [Table3].id

would that give different results than say:

From Table2 Left Outer Join
Table3 ON [Table2].id = [Table3].id Left Outer Join
Table1 On [Table1].id = [Table2].id




Responses:
Post a message   top
Replies are disabled on threads older than 7 days.