所以,我有以下脚本:
declare @v varchar(max) = '', @x int = 0
WHILE @x<=100000
BEGIN
set @x += 1
set @v += cast(@x as varchar(9))
END
select len(@v), @x, @v,
len('{Insert @v result}')
select 1
请用@ v的结果替换{Insert @v result}。由于字符长度无法复制粘贴。
我的目的是了解ID列表可以获得多长时间。
我有以下问题: