UPDATE

suggest change

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

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents