将第二个参数中指定的字符转换为第三个参数中指定的字符后,返回第一个参数中的字符串:
SELECT TRANSLATE('Monday', 'Monday', 'Sunday'); // Results in Sunday
亲自试一试 »
将第二个参数中指定的字符转换为第三个参数中指定的字符后,TRANSLATE() 函数返回第一个参数中的字符串。
笔记:如果出现以下情况,TRANSLATE() 函数将返回错误:人物和翻译有不同的长度。
TRANSLATE(
string, characters, translations)
Parameter | Description |
---|---|
string | Required. The input string |
characters | Required. The characters that should be replaced |
translations | Required. The new characters |
工作于: | SQL Server(从 2017 年开始) |
---|
将第二个参数中指定的字符转换为第三个参数中指定的字符后,返回第一个参数中的字符串:
SELECT TRANSLATE('3*[2+1]/{8-4}', '[]{}', '()()'); // Results in 3*(2+1)/(8-4)
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!