Syntax

column2 = expression2,
...

[WHERE conditions]; //Simple single table update

column2 = expression2,
...

[WHERE conditions] [ORDER BY expression [ ASC | DESC ]] [LIMIT row_count]; //Update with order by and limit

SET column1 = expression1,
    column2 = expression2,
    ...
[WHERE conditions];  //Multiple Table update