REPLACE
Returns a string in which all substrings have been replaced by another substring
REPLACE(str, from_str, to_str)
from_strSubstring to be replaced
to_strThe substring that will replace
Examples
SELECT REPLACE('Dear msr Wilson', 'Wilson', 'Brown');