I want to increment a field value by (+1) in every row of mysql table.
How to do that using mysql or phpmyadmin?
I want to increment a field value by (+1) in every row of mysql table.
How to do that using mysql or phpmyadmin?
You can use an update eg:
update my_table
set my_column = my_column +1