批量插入数据SQL语句
Posted kkx5211
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量插入数据SQL语句相关的知识,希望对你有一定的参考价值。
-- Sqlserver 2014
-- 2018.7.12
-- Xi‘an
declare @index int
set @index=1
while @index<=100
begin
insert into Address(Street,CityId)
values(CAST(@index as nvarchar),‘1‘)
set @[email protected]+1
end
以上是关于批量插入数据SQL语句的主要内容,如果未能解决你的问题,请参考以下文章