在 OceanBase 数据库中,TRANSLATE 函数用于在字符串中替换指定的字符。其基本语法如下:
TRANSLATE (source_string, from_characters, to_characters)

其中:

  •  source_string 是要进行替换的原始字符串。

  •  from_characters 是要替换的字符集合。

  •  to_characters 是替换为的字符集合。


以下是一个简单的例子:
SELECT TRANSLATE('Hello, World!', 'elo', '123') AS result;

这将返回结果: