mysql中longblob和longtext有什么区别?

发布于 2024-10-30 17:14:21 字数 60 浏览 3 评论 0原文

mysql中longblob和longtext有什么区别?

我应该用什么来保存很长的主题?

What is difference between longblob and longtext in mysql?

What should I use to save a long topic ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悲歌长辞 2024-11-06 17:14:21

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.

反目相谮 2024-11-06 17:14:21

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.

最笨的告白 2024-11-06 17:14:21

您可以使用排序规则 & TEXT 列上的字符集,这意味着:

  1. 如果您为连接指定了与 TEXT 列不同的字符集(例如,latin1 列,utf-8 请求),MySQL 会将内容转换为所需的字符集。
  2. 您可以排序&根据排序规则比较 TEXT 列。

BLOB 只是“二进制序列”,您将“按原样”获取它们。

You can use collation & character sets on TEXT columns, which would mean that:

  1. If you specify a different charset for a connection than the TEXT column is (for instance,latin1 column, utf-8 requested), MySQL will convert the contents to the required charset.
  2. You can sort & compare TEXT columns based on collation.

BLOB's are just 'binary sequences', and you'll get them 'as is'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文