best thing to do is:
1. Create another table(temp table) with the same structure with the original table.
2. Then move all the records from the original table to the new table(temp table) via creating a simple program (Select *) . Then use modify/update the temporary table.
3. Rename the original table.
4. Move the records from temp table to original table via simple program again