If this won't work 100% of the time, you'll need to give some more explaination password formats:set nocount ondeclare @myTable table (profile_id int, username varchar(10), password varchar(10))insert @myTableselect 1, 'UserA', 'b010' unionselect 2, 'UserB', 'b800' unionselect 3, 'UserC', 'b432'select * from @myTableupdate @myTable set password = 'User' + substring(password, 2, 99)select * from @myTable
Be One with the OptimizerTG