Two come to mind at this moment:
SELECT
FROM (table1 AS one, table2 AS two)
LEFT JOIN table3 AS three ON one.
/* SQL Error: Table 'test.(table1' doesn't exist */
cursor is right after WHERE two.
SELECT one.id, (SELECT COUNT(*) FROM table2 AS two WHERE two.)
FROM table1 AS one
/* SQL Error: Table 'test.two' doesn't exist */