declare @i int=0
while (@i<5000) begin
insert into tb_2(c1,c2,c3,c4)
select c1,c2,c3,c4
from tb_1
set @i += 1
end
------解决方案-------------------- +1
------解决方案--------------------
------解决方案--------------------
SQL code
declare @i int=0
while (@i<5000) begin
insert into tb_2(c1,c2,c3,c4)
select c1,c2,c3,c4
from tb_1
set @i += 1
end
------解决方案--------------------
------解决方案--------------------
------解决方案--------------------
------解决方案-------------------- 你直接先查询出结果集,然后排序,然后在遍历插入啊。。。 别在执着啊。。 declare @i int=0 while (@i<5000) begin insert into tb_2(c1,c2,c3,c4) select c1,c2,c3,c4 from tb_1 order by ??