Search Results

2
votes

How to change string data with a mass update?

I don't have SQL Server in front of me but I believe this will work: UPDATE T1 SET C1 = REPLACE(C1, 'MSA', 'CMA'); …