REPLACE
Replaces all occurrences of characters in a string with another set of characters.
	Replaces all occurrences of characters in a string with another set of characters.
Behavior type
ImmutableSyntax
REPLACE ('string', 'target', 'replacement' )
Arguments
- string
- The string to modify.
- target
- The characters in stringto replace.
- replacement
- The characters to replace target.
Examples
=> SELECT REPLACE('Documentation%20Library', '%20', ' ');
        REPLACE
-----------------------
 Documentation Library
(1 row)
=> SELECT REPLACE('This & That', '&', 'and');
    REPLACE
---------------
 This and That
(1 row)
=> SELECT REPLACE('straße', 'ß', 'ss');
 REPLACE
---------
 strasse
(1 row)