Hey,
I havent been able to tell if the sytax of the
below makes a difference, does anyone know?
Consider...[tt]
SELECT T1.ID, T2.Name
FROM Table1 T1 INNER JOIN Table2 T2
ON T1.id = T2.id[/tt]
versus...[tt]
SELECT T1.ID, T2.Name
FROM Table1 T1 INNER JOIN Table2 T2
ON T2.id = T1.id[/tt]
...this is a case of 6 of one, and half-dozen of
the other right?
A co-worked of mine thought it might change the
order in which the results are sorted or something.
But I havent been able to prove that (and he claims
he doesnt have the time
yeah right).
Regards,
Tj
PS: Why cant I search for the word 'where', I can search
for 'select' and get a bunch of results (obviously), but
'where' returns none (I even verified that there were
indeed posts containing this word).
I havent been able to tell if the sytax of the
below makes a difference, does anyone know?
Consider...[tt]
SELECT T1.ID, T2.Name
FROM Table1 T1 INNER JOIN Table2 T2
ON T1.id = T2.id[/tt]
versus...[tt]
SELECT T1.ID, T2.Name
FROM Table1 T1 INNER JOIN Table2 T2
ON T2.id = T1.id[/tt]
...this is a case of 6 of one, and half-dozen of
the other right?
A co-worked of mine thought it might change the
order in which the results are sorted or something.
But I havent been able to prove that (and he claims
he doesnt have the time
Regards,
Tj
PS: Why cant I search for the word 'where', I can search
for 'select' and get a bunch of results (obviously), but
'where' returns none (I even verified that there were
indeed posts containing this word).