Oracle TRANSLATE TRIM Function
TRANSLATE('char','search_str','replace_str') Replace every occurrence of search_str with replace_str unlike REPLACE() if replace_str is NULL the function returns NULL
TRANSLATE (text USING charset) Convert text into a specific character set Use this instead of CONVERT() if either the input or output datatype is NCHAR or NVARCHAR2.
TRIM(LEADING|TRAILING|BOTH trim_char FROM trim_source) Returns trim_source as a VARCHAR2 with leading/trailing items removed trim_char defaults to a space ' ' but may be numeric or char 'A'
|
|
Page 1
|
|