Replaces all occurrences of the second given string expression in the first string expression with a third expression.
REPLACE('string_expression1', 'string_expression2', 'string_expression3')
Returns character data if string_expression (1, 2, or 3) is one of the supported character data types. Returns binary data if string_expression (1, 2, or 3) is one of the supported binary data types.
This example replaces the string cde in abcdefghi with xxx.
SELECT REPLACE('abcdefghicde','cde','xxx')
GO
Here is the result set:
------------------------------------------------------------------------
abxxxfghixxx
(1 row(s) affected)
Data Types | String Functions |