TRANSLATE
将 string_to_replace 中的单个字符替换为其他字符。
行为类型
不可变语法
TRANSLATE ( string_to_replace , from_string , to_string );
参数
string_to_replace
- 要转换的字符串。
from_string
- 包含 string_to_replace 中需要被替换的字符。
to_string
- 若 string_to_replace 中任何字符与 from_string 中的字符匹配,则将前者替换为 to_string 中的相应字符。
示例
=> SELECT TRANSLATE('straße', 'ß', 'ss');
TRANSLATE
-----------
strase
(1 row)