VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 598|回复: 4

如何往数据库中插入百成条数据

[复制链接]

1

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-1-22 23:20:02 | 显示全部楼层 |阅读模式
各位大虾如何往数据库里插入百万条数据呀,速度要快点,谢谢
回复

使用道具 举报

0

主题

93

帖子

46.00

积分

新手上路

Rank: 1

积分
46.00
发表于 2020-2-5 09:00:01 | 显示全部楼层
create table ta(id int)
go
declare @i int,@j int
select @i=1,@j=100
while @i!>@j
begin
insert ta select @i
set @i=@i+1
end
select * from ta
回复

使用道具 举报

0

主题

93

帖子

46.00

积分

新手上路

Rank: 1

积分
46.00
发表于 2020-2-5 10:00:01 | 显示全部楼层
create table ta(id int)
go
declare @i int,@j int
select @i=1,@j=1000000--定义一百万
while @i!>@j
begin
insert ta select @i
set @i=@i+1
end
select * from ta
回复

使用道具 举报

0

主题

93

帖子

46.00

积分

新手上路

Rank: 1

积分
46.00
发表于 2020-2-5 13:30:02 | 显示全部楼层
create table ta(name1, name varchar(100))
set rowcount 1000000
insert ta
select a.name from sysobjects a ,syscolumns b
set rowcount 0
回复

使用道具 举报

1

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
 楼主| 发表于 2020-3-18 16:00:01 | 显示全部楼层
谢谢了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表