declare @id int;
set @id=100;
while @id>0
begin
if @id%2=0
begin
insert into ListTable(RegName,Referrer,NetWorkStatu,PagTime,NetWorkSource,OtherGetBag,IGetBag) values ('某某公司名称某某公司名称','张亭之',0,null,'二维码','1个月高级模式','1个月高级模式');
end
else if(@id%3=0)
begin
insert into ListTable(RegName,Referrer,NetWorkStatu,PagTime,NetWorkSource,OtherGetBag,IGetBag) values ('某某公司名称某某公司名称','张亭之',2,null,'二维码',null,'1个月高级模式');
end
else
begin
insert into ListTable(RegName,Referrer,NetWorkStatu,PagTime,NetWorkSource,OtherGetBag,IGetBag) values ('某某公司名称','李晓明',1,null,'二维码','1个月高级模式',null) ;
end
@id=@id-1;
end