What is the maximum length of data I can put in a BLOB column in MySQL?
A BLOB can be 65535 bytes (64 KB) maximum.
BLOB
If you need more consider using:
a MEDIUMBLOB for 16777215 bytes (16 MB)
MEDIUMBLOB
a LONGBLOB for 4294967295 bytes (4 GB).
LONGBLOB
See Storage Requirements for String Types for more info.
1.4m articles
1.4m replys
5 comments
57.0k users