In Oracle/PLSQL, the trim function removes all specified characters either from the beginning or the ending of a string.
The syntax for the trim function is: trim ([leading | trailing | both [trim_character] string1)
Leading-Remove trim_string from the front of string1.
Trailing-Remove trim_string from the end of string1.
Both-Remove trim_string from the front and end of string1.
If none of these are chosen (ie: leading, trailing, both), the trim function will remove trim_string from both the front and end of string1.
Trim_character is the character that will be removed from string1. if this parameter is omitted, the trim function will remove all leading and trailing spaces from string1.
String1 is the string to trim.
For example: trim ('tech ') wo'd return 'tech'
trim (''from 'tech ') wocould return 'tech '
trim (Leading '0' from '000000') wocould return '000000'
trim (trailing '1' from 'tech1 ') wocould return 'tech '
trim (both '1' from '123tech111') wocould return '23tech'