they are not the same joins, but the results are the same
here is some test data that you can use to verify that the joins are different --
Code:
a b c
21 21 21
22 22
however, since you are returning
only the a columns, the results look the same
note also that if we change the test data as follows--
Code:
a b c
21 21 21
22 22
22
22
then the results
will be different
this example once again shows the folly of "dumbing down" your real question
