Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
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