Syntax:
REPLACE( String to search , String to search for and replace , String to place into the original string )
REPLACE(
,
)
Example:
SELECT REPLACE( 'Peter Steve Tom', 'Steve', 'Billy' ) --Return Values: Peter Billy Tom