1trim(str) - Removes the leading and trailing space characters from str
2Example:
3  > SELECT trim('   facebook  ') FROM src LIMIT 1;
4  'facebook'
5