循环SQL删除(插入,更新)

declare @i int
set @i=81
while @i<100
begin
delete orders where id=@i
set @i=@i+1
end

你可能感兴趣的:(循环SQL删除(插入,更新))