How to update field to add value to existing value? For example I have
Table name: table
table
id credit 1 4 2 5 3 3
Try this code
UPDATE table SET credit = credit + 7 WHERE id='1'