How can I add one value to the field in my table?
I update the field by below mysql, but it just update the value.
UPDATE table SET value= 3 WHERE id= 1
So here is my actual want to do:
Before I add value
+--------------+
| table |
+--------------+
| id | value |
+--------------+
| 1 | 1 |
+--------------+
| 2 | 2 |
+--------------+
After I add value
+-------------------+
| table |
+-------------------+
| id | value |
+-------------------+
| 1 | 1 , 3 |
+-------------------+
| 2 | 2 |
+-------------------+