mysql UPDATE table SET column='new'; code example
Example: mysql update add to existing value
mysql> UPDATE tableName SET sometotal = sometotal+10 WHERE Id = 4;
mysql> UPDATE tableName SET sometotal = sometotal+10 WHERE Id = 4;