หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
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