We have a column that is a simple integer. We want to add to each row the value 10. How do we do it in sql for the MySQL database?
Actually we have another column th
Should be something simple like this:
UPDATE some_table SET int_field = int_field + 10