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