If I have
SELECT * FROM Table1 t1 LEFT JOIN Table2 t2 ON t1.id = t2.id WHERE t1.user=\'bob\';
Does the WHERE clause run afte
WHERE
What you may use is table expression after FROM like this:
SELECT * FROM (SELECT id FROM Table1 WHERE user = 'bob') AS t1 LEFT JOIN Table2 t2 ON t1.id = t2.id