在 SQL Server 2005 中连接 ntext
我需要将 2 个 ntext 列连接成一列。 我无法将它们转换为 nchar,因为两者都包含长度超过 4000 个字符的字符串。 有没有办法在 SQL Server 2005 中做到这一点?
I need to concatenate 2 ntext columns into one. I can't convert them to nchar, cause both contains strings longer than 4000 chars.
Is there a way to do this in SQL Server 2005?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将它们转换为
nvarchar(max)
以进行串联。 它是ntext
的 SQL 2005 替代品,并允许所有常见的nvarchar
操作。Convert them to
nvarchar(max)
for the concatentation. It's the SQL 2005 replacement forntext
and allows all the usualnvarchar
operations.有一种方法可以更新 ntext 列:
这里有更多信息。
There is a way to update ntext column:
Here are more information.
但实际上,在 SQL Server 2005 中,
NTEXT
已被弃用,并且很可能在 SQL Server 2008 R2 或更高版本中被淘汰。NVARCHAR(MAX)
是逻辑后继者,为您提供NTEXT
曾经给您的所有内容,甚至更多!如果您的字段从一开始就是
NVARCHAR(MAX)
,您可以只写:就可以了!
我建议您升级表以使用
NVARCHAR(MAX)
而不是NTEXT
。马克
But really - with SQL Server 2005,
NTEXT
becomes deprecated and will most likely be phased out in SQL Server 2008 R2 or one release later.NVARCHAR(MAX)
is the logical successor, giving you allNTEXT
ever gave you, and a lot more!If your fields would be
NVARCHAR(MAX)
from the beginning, you could just write:and be done with it!
I'd suggest you upgrade your tables to use
NVARCHAR(MAX)
instead ofNTEXT
.Marc