For updating more than one field in an update query:
You separate the fields/values by a comma.
$sql = "UPDATE user.user SET level='2', power='1' WHERE id='" . $_GET['char'] . "' AND level > 0 AND item > 0 LIMIT 1;";
Note: The above query is vulnerable to SQL Injection because anything can be passed to the $_GET variable by the user. This can be used maliciously to alter your query.
For updating more than one row in an update query:
Only the same data can be placed in multiple rows. You modify the where statement to logically include the rows that should be updated. If the data is to be different per row then this is not possible, but you can use prepared statements.
Prepared statements allow you to set up a template for a query that will be run many times. Then you can just pass the values. Most databases will cache the query so that there is a performance boost. It also protects against SQL injection by separating the query from the data.
LIMIT 1there? – hjpotter92 Mar 21 at 23:40