我正在尝试将 100,000,000 条基于简单坐标的记录插入表中。有没有比下面的 t-sql 命令更快的方法来实现这一点
declare @x int
declare @y int
set @x = 0
set @y = 0
begin tran
while @x < 10000
begin
while @y < 10000
begin
insert into world (x,y) VALUES (@x,@y)
set @y = @y + 1
end
set @y = 0
set @x = @x + 1
end
commit tran