With the below query metioned in here
SELECT * FROM Table1 t1
LEFT JOIN Table2 t2 ON t1.id = t2.id
WHERE t1.user='bob';
Mosty Mostacho stated that WHERE is execute before the JOIN.
But if other sources like this, it said "Normally, filtering is processed in the WHERE clause once the two tables have already been joined".
So I am confused which one is right? Can I check the order with EXPLAIN? If yes, how? I can't understand which field in the Explain output state the order.