I had the same question and could not find an answer on the internet.
So i tried to logically derive the answer.
Here is a simple UPDATE statement (with alias a for the table):
UPDATE tbl_employees a
SET a.Name = 'Anna'
WHERE a.Id = 122;
Obviously, whether SET nor WHERE can be performed before the table is identified, so UPDATE must be the first logical step. Proof: Alias a is working (in Microsoft Access).
Before applying the SET Statement, one needs to know what records to apply it on. So WHERE must go as the second logical step (omitting WHERE would alter all records in the table)
Applying the SET Statement on the WHERE-filtered recordset must be the third step.
Summing up, the logical processing order must be:
- UPDATE (~equivalent to FROM)
- WHERE
- SET (~equivalent to SELECT)
Any other order seems absurd (can you hypothetically think of any other order?).
Once again, its my own logical derivation. I dont know for sure. I would appriciate any link to a serious internet resource.