VARCHAR Data and Trailing Blanks

For a column of data type VARCHAR, trailing blanks within the data being inserted are handled differently depending on whether or not the data is enclosd in quotes.

Data inserted using INSERT, UPDATE, or LOAD TABLE can be:
For a column of data type VARCHAR, trailing blanks within the data being inserted are handled as follows:

When you write your applications, do not depend on the existence of trailing blanks in VARCHAR columns. If an application relies on trailing blanks, use a CHAR column instead of a VARCHAR column.