Under User-Defined Variables, the MySQL manual documents:
User variables can be assigned a value from a limited set of data types: integer, decimal, floating-point, binary or nonbinary string, or
NULLvalue. Assignment of decimal and real values does not preserve the precision or scale of the value. A value of a type other than one of the permissible types is converted to a permissible type. For example, a value having a temporal or spatial data type is converted to a binary string.If a user variable is assigned a nonbinary (character) string value, it has the same character set and collation as the string. The coercibility of user variables is implicit. (This is the same coercibility as for table column values.)
However the manual does not state:
-
the size of supported integers (e.g. 4-byte
INT, or 8-byteBIGINT), whether they are signed or unsigned, and whetherZEROFILLis applied (if so, using what display width);This sqlfiddle appears to suggest that MySQL 5.5.25 will use up to
BIGINT, signed according to the assignment, and will not apply anyZEROFILL. -
the precision and scale used in fixed- and floating-point values, given that this is not preserved from the assignment; and
-
the maximum length (in characters and/or bytes) of strings.
sqlfiddle is limited by
max_allowed_packetof 220 bytes (which I can’t change): I’d guess thatLONGTEXTof 232 bytes (4GiB) is supported.
What limits can be safely relied upon, especially across different server versions and configurations?
User variables use the same internal data types that MySQL uses for computations on column values. These internal types are big enough for all data types supported by MySQL.
ZEROFILL, as that is an additional property of the column, not of the data type itself. Furthermore, integer user variables do not have a width; when converted to text, they use just as many digits as needed.LONGTEXTvalue, ifmax_allowed_packetis large enough and you have enough memory. However, there is an undocumented limit of 16 MB for user variables, mentioned in bug 31898.