0
Q:

replace string value in sql

UPDATE employees 
SET 
    phone_number = REPLACE(phone_number, '.', '-');
4
Update  tbl.Products
Set articlenumber = replace(articlenumber, 's401', 'I00010') 
5
UPDATE tableName  SET  fieldName = REPLACE(fieldName, 'fromStringValue', 'toStringValue');
1

New to Communities?

Join the community