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?
