I want to copy all row in new column with replacing all special character with -. my code is below.
My table design
select * from mycode
UPDATE mycode
SET newName = Replace(myname, '%[^0-9a-zA-Z]%', '-')
It's getting copy with my code but the special character are not replaced
Result