How to perform a character wise replacement of a string in Oracle
In Oracle SQL/PL-SQL the TRANSLATE function performs a character wise replacement of a string. The syntax is: TRANSLATE( input_string , string1 , string2 )
- String1 is the string that will be searched for in input_string
Comments
Post a Comment