在 SQL Server 中存储 HTML
我应该使用什么数据类型在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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 tepmplatesNVARCHAR(MAX)
if the HTML could contain any contentNVARCHAR 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..
将其放入
NVARCHAR(MAX)
(或更小)中。HTML 与其他文本没有什么不同。
Put it in an
NVARCHAR(MAX)
(or smaller).HTML is no different from other text.
在 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)