我可以在 MySQL 的 BLOB 列中放入的最大数据长度是多少?
我可以在 MySQL 的 BLOB 列中放入的最大数据长度是多少?
What is the maximum length of data I can put in a BLOB column in MySQL?
推荐答案
BLOB
最大可以是 65535 字节 (64 KB).
A BLOB
can be 65535 bytes (64 KB) maximum.
如果您需要更多考虑使用:
If you need more consider using:
一个
MEDIUMBLOB
用于 16777215 字节 (16 MB)
a
MEDIUMBLOB
for 16777215 bytes (16 MB)
a LONGBLOB
用于 4294967295 字节 (4 GB).
a LONGBLOB
for 4294967295 bytes (4 GB).
有关详细信息,请参阅字符串类型的存储要求.
See Storage Requirements for String Types for more info.
相关文章