向表内添加一万条数据
Posted brianlai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向表内添加一万条数据相关的知识,希望对你有一定的参考价值。
declare
@
count
int
= 1
while (@
count
<= 10000)
begin
insert
into
seinou
values
(@
count
,
‘‘
,
‘‘
)
set
@
count
= @
count
+ 1
end
另外,如果表定义的时候id已经自增长了,把除了id以外的字段都列出来
declare
@
count
int
= 1
while (@
count
<= 10000)
begin
insert
into
seinou(column1,column2)
values
(
‘‘
,
‘‘
)
set
@
count
= @
count
+ 1
end
来自:https://zhidao.baidu.com/question/391790303270201645.html
以上是关于向表内添加一万条数据的主要内容,如果未能解决你的问题,请参考以下文章