我想知道调用
REPLACE function described here的适当方法是什么,因为我已经创建了下面的语句来测试它,但是我收到了一个错误:
DECLARE templateMessage3 VARCHAR2(50); BEGIN templateMessage3 := 'Dear Mr./Madam FNAME'; replace(templateMessage3,'FNAME','Lilly'); DBMS_OUTPUT.PUT_LINE(templateMessage3); END; /
错误:
PLS-00221: 'REPLACE' is not a procedure or is undefined
我正在使用Oracle 11g Web界面.