MySQL 的 BLOB 列中可以放入的最大数据长度是多少?
MySQL 的 BLOB 列中可以放入的最大数据长度是多少?
What is the maximum length of data I can put in a BLOB column in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
MySQL 的 BLOB 列中可以放入的最大数据长度是多少?
What is the maximum length of data I can put in a BLOB column in MySQL?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
BLOB
最大可为 65535 字节 (64 KB)。如果您需要更多,请考虑使用:
a
MEDIUMBLOB
for 16777215 bytes (16 MB)a
LONGBLOB
为 4294967295 字节 (4 GB)。有关详细信息,请参阅字符串类型的存储要求。
A
BLOB
can be 65535 bytes (64 KB) maximum.If you need more consider using:
a
MEDIUMBLOB
for 16777215 bytes (16 MB)a
LONGBLOB
for 4294967295 bytes (4 GB).See Storage Requirements for String Types for more info.
可能准确,也可能不准确,但根据此站点:http://www.htmlite.com/mysql003。 php.
MySQL手册说:
我认为第一个站点通过解释 MySQL 手册获得答案,根据 http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html
May or may not be accurate, but according to this site: http://www.htmlite.com/mysql003.php.
The MySQL manual says:
I think the first site gets their answers from interpreting the MySQL manual, per http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html