TRIM(s) returns the string with leading and trailing
spaces removed.
TRIM('Hello world ') -> 'Hello world'
This function is particularly useful when working with CHAR fields.
Typically a CHAR field is paddded with spaces. In contrast a VARCHAR
field does not require padding.