sql-server – Sql Server STUFF – 应该使用position> 8000吗?

前端之家收集整理的这篇文章主要介绍了sql-server – Sql Server STUFF – 应该使用position> 8000吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
比较这两个语句
select stuff(convert(varchar(max),replicate('a',10000)),8001,1,'b')
select stuff(convert(varchar(max),8000,'b')

产量

aaaaaaaaaaaaaaaaaaaaaaaa...
NULL

在线书籍说开始可以是bigint类型.为什么这么大的范围,如果甚至不会为8001工作?

如果2005年,2008年,2008年R2和Denali之间的行为有所不同,那么我想知道每个版本的实际行为.

解决方法

REPLICATE ('a',10000)将产生一个8000个字符的字符串:

If string_expression is not of type
varchar(max) or nvarchar(max),
REPLICATE truncates the return value
at 8,000 bytes. To return values
greater than 8,000 bytes,
string_expression must be explicitly
cast to the appropriate large-value
data type.

尝试REPLICATE(cast(‘a’as varchar(max)),10000).

猜你在找的MsSQL相关文章