I'm wondering about the speed between explicitly saying LEFT JOIN, and then simply joining the values on each other. So here, we have:
SELECT example.id FROM example
LEFT JOIN finals ON example.id = finals.account_id";
vs.
SELECT example.id, finals.account_id
FROM example, finals
WHERE example.id = finals.account_id
I'm nearly certain the first is faster, but I cannot find an answer to suggest that. (I'm not actually even sure what to 'call' the second one, I just call it a soft join)