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 -
UPDATE table SET field = oldValue + X WHERE id = 1
UPDATE table SET value = value + x WHERE id = thisID