gpt4 book ai didi

sql-server - SQL Server varchar(max) 工作不正常

转载 作者:行者123 更新时间:2023-12-04 09:44:48 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





SQL Server reducing the length of the string to 8000 characters

(2 个回答)


去年关闭。




在以下示例中,txt 列长度未正确显示。

CREATE TABLE dbo.test
(
Id int IDENTITY,
txt varchar(max)
);

insert into test(txt) select REPLICATE('0',8000);
insert into test(txt) select REPLICATE('00',8000);

select id, len(txt) from test;

drop table test;

两者显示的结果都是 8000。

任何 body 都可以帮助吗?

最佳答案

如果你想在 varchar(max) 中插入一些东西列 - 您的插入代码需要将其显式转换为 varchar(max) - 尝试这个:

insert into test(txt) select REPLICATE(cast('00' as varchar(max)), 8000);

这应该会在表中为您提供一个长度为 16'000 个字符的字符串。

关于sql-server - SQL Server varchar(max) 工作不正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62180460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com