您现在的位置是:网站首页> 编程资料编程资料

直接循环写入数据_MsSql_

2023-05-26 329人已围观

简介 直接循环写入数据_MsSql_

有时候我们需要想数据中写数据
declare @i int
set@i=1
while @i<30
begin
insert into table(id) values(@i)
set @i=@i+1
end 

-六神源码网