oracle replace
时间: 2023-08-30 11:11:00 浏览: 84
replace
Oracle REPLACE函数用于在一个字符串中替换指定的子字符串。其语法如下:
```
REPLACE(string, search_string, replacement_string)
```
其中,string是要进行替换操作的原始字符串,search_string是要被替换的子字符串,replacement_string是用于替换的新字符串。
例如,假设有一个字符串"hello world",我们想将其中的"world"替换为"there",则可以使用以下语句:
```
SELECT REPLACE('hello world', 'world', 'there') FROM dual;
```
执行结果为:"hello there"。
阅读全文