![]() ![]() ![]() |
Ispirer SQLWays Database Migration Software
BINARY and LONGVARBINARY
Binary data types.
BINARY(n)
Fixed-length binary data of n bytes. n must be a value from 1 through 255. BINARY columns are padded with binary zeros. You must specify the size for BINARY columns.
LONGVARBINARY
Variable-length binary data from 0 through 2^31-1 (2,147,483,647) bytes. Storage size is the actual length in bytes of the data entered + 8-byte header.
![]() ![]() ![]() |