I have a table that stores a value that will be added to over time. When I want to add to the value I would like to do so in a single query rather than -
- Get oldValue from database
- newValue = oldValue + X
update row with newValue
$query1 = "SELECT value FROM table WHERE id = thisID"; $result1 = mysql_query($query1); while($row=mysql_fetch_array($result)) { $oldValue = $row['value']; } $newValue = $oldValue + x $query1 = "UPDATE table SET value = $newValue WHERE id = thisID";
Can this be done in a single query?