VARCHAR
VARCHAR(width) [BINARY]The VARCHAR data type adjusts its width and does not pad the strings stored.
Any trailing spaces contained in a string that is stored are removed.
This column may be from 0 to 65,535 characters wide. The type of
character set given can affect the number of characters given, as some
require more than one byte per character (e.g., UTF-8). The default if
no width is given is 1. This type is synonymous with
CHARACTER VARYING. You can also use
NATIONAL VARCHAR to indicate that a predefined
national character set is to be used. FULLTEXT
indexing and searching may be performed on a
VARCHAR column with a MyISAM table.