ORACLE 利用 REPLACE函数替换字段字符串

REPLACE(string,s1,s2)
string 希望被替换的字符或变量
s1 被替换的字符串
s2 要替换的字符串
SQL> select replace(he love you,he,i) from dual;
REPLACE(H
----------
i love you

posted @ 2016-12-20 17:11  FreePress  阅读(2398)  评论(0编辑  收藏  举报