vote up 0 vote down star

Simple question, in MySQL are the two following joins valid / similar?

SELECT * FROM t1 LEFT JOIN t2, t3 ON t2.a = t1.a AND t3.b = t1.b;

SELECT * FROM t1 LEFT JOIN (t2, t3) ON (t2.a = t1.a AND t3.b = t1.b);

Do the (lack of) parenthesis affect the statement?

flag

2 Answers

vote up 2 vote down check

I believe they are equivalent.

link|flag
vote up 0 vote down

LEFT join is a binary operator. This means it operates on two tables at a time. I think you will need two LEFT JOIN clauses in your query.

Select *
from T1 LEFT JOIN t2 on t1.a = t2.a
     LEFT JOIN t3 on t1.b = t3.b

Even if your query works(i dont have a mysql instance to check it) i would advice against using the syntax as it looks ambiguous

link|flag
That came directly from the MySQL manual. – Alix Axel Aug 25 at 9:54
Thats ok then. In any case, its better to avoid any ambiguity if possible! I guess you will be the best judge of that. Let us know if there are any differences by trying out the two versions on some test data. – bkm Aug 25 at 12:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.