Is there a better way to Update fields?Below works, but is there a better way?
1.Delete all hyphens, apostrophes, blankd, periods, II,
Update tablename
set first_name= replace(first_name, 'II', "")
Update tablename
set first_name= replace(first_name, '-', "")
Update...