Replace a range of values in a single MySQL column with the following query:
Update [Table_Name]
Set [Column_Name] = replace([Column_Name], ‘[String to Replace]’,'[New String]’)
Where id Between [someNumber] and [anotherNumber]
Replace a range of values in a single MySQL column with the following query:
Update [Table_Name]
Set [Column_Name] = replace([Column_Name], ‘[String to Replace]’,'[New String]’)
Where id Between [someNumber] and [anotherNumber]