I have a query that looks like this:
JavaScript
x
$sql = "UPDATE tbl SET amt_field='amt_field+1' WHERE username='" .mysql_real_escape_string($_SESSION['username']). "'";
mysql_select_db('db',$con);
mysql_query($sql,$con);
I want to increment the value as easily as possible.
I have tried:
JavaScript
"UPDATE tbl SET amt_field='amt_field+1' WHERE
"UPDATE tbl SET amt_field='amt_field' + 1 WHERE
"UPDATE tbl SET amt_field='amt_field++' WHERE
I don’t get error messages, but the value in my db does not increase either.
Advertisement
Answer
JavaScript
UPDATE tbl SET amt_field = amt_field + 1 WHERE
If you use the single quotes '
, you’re telling the enclosed value to be interpreted as a string You were probably thinking about the tick marks. This is also valid:
JavaScript
UPDATE tbl SET `amt_field` = `amt_field` + 1 WHERE
This must be used when the column (or table etc.) has a reserved name.