How to increase and update mysql columns with the same value
Your question is unclear.
If necessary, you can do this:
UPDATE whatever_table SET column_a = column_a + 1 WHERE column_name = 'AAAAAA'
This will increment a column in a ACID compliant manner.
Your question is unclear.
If necessary, you can do this:
This will increment a column in a ACID compliant manner.