Hello, I wanted to know whether i can direct update mysql datas to add (+) the values, without needing to fetch them.
For example:
My database is like this, data1 = 56 so to add a 4 to it, i will first fetch the data from the database then,
$data1 = $data1 + 4; and finally again perform a Update query.
So is there is way i can send like add +4 to the current value of data1.
I am using php lanuage.
Thank You