mysql中longblob和longtext有什么区别?
mysql中longblob和longtext有什么区别?
我应该用什么来保存很长的主题?
What is difference between longblob and longtext in mysql?
What should I use to save a long topic ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
BLOB 用于二进制大型对象。如果您在数据库中存储二进制数据,那么 BLOB 将是您想要的表类型。否则..长文本。
在你的情况下是长文本。
BLOBs are for Binary Large Objects. If you're storing binary data in your DB, then BLOB would be the table type you want. Otherwise.. longtext.
In your case longtext.
BLOB 和 TEXT 基本相同,除了 TEXT 字段应用了字符集转换规则。 BLOB 字段则不然。因此,对于 BLOB,你输入的就是你得到的。对于 TEXT,您输入的内容可能不是您输出的内容。
BLOB and TEXT are basically identical, except that TEXT fields have character set translation rules applied. BLOB fields do not. So with BLOB what you put in is what you get. With TEXT, what you put may not be what you get out.
您可以使用排序规则 &
TEXT
列上的字符集,这意味着:TEXT
列不同的字符集(例如,latin1
列,utf-8
请求),MySQL 会将内容转换为所需的字符集。TEXT
列。BLOB
只是“二进制序列”,您将“按原样”获取它们。You can use collation & character sets on
TEXT
columns, which would mean that:TEXT
column is (for instance,latin1
column,utf-8
requested), MySQL will convert the contents to the required charset.TEXT
columns based on collation.BLOB
's are just 'binary sequences', and you'll get them 'as is'.