TEXT
TEXT[(width)] [CHARACTER SETcharacter_set] [COLLATEcollation]
This column data type allows for the storage of a large amount of
text data. You may give a width with this data type; the maximum is
65,535 bytes. If you attempt to store a value in a
TEXT column that is larger than its limit, unless
the server is set to SQL strict mode, the data will be truncated and a
warning message will be generated. If strict mode is on, the data will
be rejected and an error will be returned. A TEXT
column cannot have a default value. For sorting data, the value given
for the system variable max_sort_length will be
used. Only the number of bytes specified by that variable for each
column will be included in sorts. FULLTEXT indexing
and searching may be performed on a TEXT column
with a MyISAM table, but not on a BLOB column. If
you want to use a character set for the column other than the default
for the table, you can give one for the column. Values are sorted
based on the collation of the character set for the column.