How to update field to add value to existing value?
For example I have
Table name: table
id credit
1 4
2 5
3 3
Is there a way to simply add value to the credit?
like
UPDATE table SET credit = '+7' WHERE id='1'
I want to add 7 to 4 so that the credit=11 where id='1'
How to do this?




