PHP头条
热点:

SQL SERVER中直接循环写入数据


declare @i int
set @i=1
while @i<30
begin
insert into test (userid) values(@i)
set @i=@i 1
end


www.phpzy.comtrue/php/14753.htmlTechArticleSQL SERVER中直接循环写入数据 declare @i int set @i=1 while @i30 begin insert into test (userid) values(@i) set @i=@i 1 end...

相关文章

    暂无相关文章
相关频道:

PHP之友评论

今天推荐