Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
Databricks SQL
Databricks Runtime
Replaces all occurrences of search with replace.
Syntax
replace(str, search [, replace] )
Arguments
str: ASTRINGexpression to be searched.search: ASTRINGexpression to be replaced.replace: An optionalSTRINGexpression to replacesearchwith. The default is an empty string.
Returns
A STRING.
If you do not specify replace or is an empty string, nothing replaces the string that is removed from str.
Examples
> SELECT replace('ABCabc', 'abc', 'DEF');
ABCDEF
> SELECT replace('ABCabc' COLLATE UTF8_LCASE, 'abc', 'DEF');
DEFDEF