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
Just try this...
UPDATE table SET credit = credit + 7 WHERE id = 1