lol easiest way to explain it is be specific
FROM table1, table2 JOIN table3 on id = table3.id
who knows what that means
now this
FROM table1 INNER JOIN table2 on table1.id = table2.id
INNER JOIN table 3 on table3.id = table2.id
looks much clearer at least to me