Vanwege een gebrek aan logica slaat dit bericht helemaal nergens op.
http://www.mysql.com/doc/en/String_functions.html
REPLACE(str,from_str,to_str)
Returns the string str with all occurrences of the string from_str replaced by the string to_str:
mysql> SELECT REPLACE('www.mysql.com', 'w', 'Ww');
-> 'WwWwWw.mysql.com'