MySQL 注释字段或文本区域的字段类型

发布于 2024-08-25 17:45:03 字数 118 浏览 7 评论 0原文

正如标题所示,我正在为表中的评论字段寻找一个好的字段类型。它将存储许多字符(因为用户可以不断添加),所以它肯定超过 255 个。我查看了长文本,但不确定......另外,我如何更改字段类型以接受不同的字符,例如撇号。谢谢。

As the title says, I'm after a good field type for a comments field I have in a table. It will store many characters (as users can continuously add to it) so it's definitely over 255. I looked at longtext but wasn't sure...Also how do I change the field type to accept different characters such as apostrophies. Thanks.

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

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

发布评论

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

评论(1

永不分离 2024-09-01 17:45:03

LONGTEXT 是您想要的(甚至可能是 MEDIUMTEXT 或只是 TEXT,具体取决于您期望的文本的最大长度:TEXT< /code> 最多可以存储 65KB 的文本,这通常绰绰有余。

所有这些字段都可以存储 UTF-8 编码的 Unicode,所以我不确定问题的第二部分(关于撇号)是什么意思。 。

LONGTEXT is what you want (maybe even MEDIUMTEXT or just TEXT depending on the maximum length of text you're expecting: TEXT can store up to 65KB of text, which is usually more than enough.

All of these fields can store UTF-8 encoded Unicode, so I'm not sure what you mean by the second part of your question (about apostrophies).

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