Syntax: REPLACE (, [,]) : REPLACE « Char Functions « Oracle PL / SQL
- Oracle PL / SQL
- Char Functions
- REPLACE
Syntax: REPLACE (, [,])
SQL>
SQL>
SQL> SELECT REPLACE ('ABCDA', 'A','*') replace_A from dual;
REPLACE_A
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------
*BCD*
SQL>
Related examples in the same category