是的,TRANSLATE 函數適用于所有 Oracle 數據庫版本
TRANSLATE(string, from_string, to_string)
其中:
string
是要操作的字符串。from_string
是要從原始字符串中替換或刪除的字符集。to_string
是用于替換 from_string
中字符的新字符集。如果省略此參數,則默認為空字符串,表示從原始字符串中刪除 from_string
中的字符。例如,以下查詢將把字符串 ‘hello’ 中的所有 ‘l’ 替換為 ‘x’:
SELECT TRANSLATE('hello', 'l', 'x') FROM DUAL;
結果將是 ‘hexlo’。