在 SQL Server 中存储 HTML

发布于 2024-11-03 03:51:31 字数 72 浏览 1 评论 0原文

我应该使用什么数据类型在 SQL Server 2008 中存储 HTML 内容?

它适用于 CMS 的动态内容。

What data type should I use to store HTML content in SQL Server 2008?

It's for dynamic content for a CMS.

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

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

发布评论

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

评论(3

撩心不撩汉 2024-11-10 03:51:31

VARCHAR(MAX) 如果全部都是基于 ascii 的,例如基本 HTML 模板

NVARCHAR(MAX) 如果 HTML 可以包含任何内容

NVARCHAR 将使您的存储使用量增加一倍因为它使用的空间量是 VARCHAR 的两倍。 HTML 本身不需要 NVARCHAR,只有 HTML 标签之间的内容可以基于语言等。

编辑:

给出这个答案已经很多年了,如果有的话,我现在几乎总是使用 NVARCHAR标签内容之间的任何内容。 Unicode 很流行...

如果只是存储简单的 html 模板,例如标签和占位符,我只使用 VARCHAR
例如:

[PLACEHOLDER]

根据您的用例进行调用。

VARCHAR(MAX) if it's all going to be ascii-based, say for basic HTML tepmplates

NVARCHAR(MAX) if the HTML could contain any content

NVARCHAR will double your storage use as it uses double the amount of space as VARCHAR. HTML itself does not require NVARCHAR, only the content in-between the HTML tags could based on the language, etc..

Edit:

Many years on from giving this answer I almost always use NVARCHAR now if there is any between the tag content. Unicode is popular...

I only use VARCHAR if just storing simple html templates, eg tags and placeholders
eg: <div><span>[PLACEHOLDER]</span><div>

Make the call based on your use-case..

﹂绝世的画 2024-11-10 03:51:31

将其放入 NVARCHAR(MAX)(或更小)中。
HTML 与其他文本没有什么不同。

Put it in an NVARCHAR(MAX) (or smaller).
HTML is no different from other text.

云柯 2024-11-10 03:51:31

在 SQL Server 2008 中存储 HTML 内容应使用的数据类型

如果要存储多语言文本,则必须使用 Nvarchar(Max)

否则,如果您想存储英语文本,请使用VARCHAR(MAX)

与 varchar(max) 相比,nvarchar(max) 包含更多空间

Data type should I use to store HTML content in SQL Server 2008

You must used Nvarchar(Max) if you want to store multiple language text.

otherwise use VARCHAR(MAX) if you want to store English language text.

nvarchar(max) contain more amount of spance compare to varchar(max)

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