I am trying to update the first 3 positions in a phone field due to a area code change. I need help on how to parse the first 3 positions in the field and do a replace
Here is what I was going to try
Update tbl
set phone = replace(left(phone,3),'616','927)
The problem that I see with it is that it will update but it will update with just the 927, it need bring with it the rest of the number
Anyhelp would be greatly appreciated!!!
Here is what I was going to try
Update tbl
set phone = replace(left(phone,3),'616','927)
The problem that I see with it is that it will update but it will update with just the 927, it need bring with it the rest of the number
Anyhelp would be greatly appreciated!!!