当前位置: 移动技术网 > IT编程>开发语言>Asp > 用SQL批量插入数据的存储过程

用SQL批量插入数据的存储过程

2017年12月08日  | 移动技术网IT编程  | 我要评论
循环插入:
复制代码 代码如下:

declare @mycounter int
set @mycounter = 0 /*设置变量*/
while (@mycounter < 2) /*设置循环次数*/
begin
waitfor delay '000:00:10' /*延迟时间10秒*/
insert into time_by_day
(time_id, the_date, the_year, month_of_year, quarter, day_of_month)
select top 1 time_id + 1 as time_id, the_date + 1 as the_date, year(the_date + 1)
as the_year, month(the_date + 1) as month_of_year, { fn quarter(the_date + 1)
} as quarter, day(the_date + 1) as day_of_month
from time_by_day
order by time_id desc
set @mycounter = @mycounter + 1
end

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网