SQL Server批量更新100-500间随机值
declare @len int,@i int,@v int;
set @len=(select count(*) from Bbs_Post);--获取赋值范围的总长度
set @i=0; --逐一对行赋值的指针
while @i<@len
begin
declare @a int;
set @a=@i+100*cast(ceiling(rand()* 2) as int);
print @a
set @i=@i+1;
set @v=(select top 1 Post_Id from dbo.Bbs_Post where Post_BackCount<100 order by Post_id asc); --获取赋值范围中的随机值
update dbo.Bbs_Post set Post_BackCount = @a where Post_Id= @v
end
本文介绍如何使用SQLServer进行批量更新操作,通过声明变量实现对特定范围内的随机值进行更新,确保数据的高效管理和维护。
5641

被折叠的 条评论
为什么被折叠?



