BINARY
This page describes the BINARY data type. For details about the operator, see Binary Operator.
Syntax
Description
The BINARY
type is similar to the CHAR type, but stores binary
byte strings rather than non-binary character strings. M
represents the
column length in bytes.
It contains no character set, and comparison and sorting are based on the numeric value of the bytes.
If the maximum length is exceeded, and SQL strict mode is not enabled , the extra characters will be dropped with a warning. If strict mode is enabled, an error will occur.
BINARY values are right-padded with 0x00
(the zero byte) to the specified length when inserted. The padding is not removed on select, so this needs to be taken into account when sorting and comparing, where all bytes are significant. The zero byte, 0x00
is less than a space for comparison purposes.
Examples
Inserting too many characters, first with strict mode off, then with it on:
Sorting is performed with the byte value:
Using CAST to sort as a CHAR instead:
The field is a BINARY(10), so padding of two '\0's are inserted, causing comparisons that don't take this into account to fail:
Example of BINARY:
Data Too Long
When SQL_MODE is strict (the default) a value is considered "too long" when its length exceeds the size of the data type, and an error is generated.
Example of data too long behavior for BINARY:
See Also
This page is licensed: GPLv2, originally from fill_help_tables.sql
Last updated
Was this helpful?