用户登录
用户注册

分享至

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

  • 作者: 武大地
  • 来源: 51数据库
  • 2021-09-29
循环插入:
复制代码 代码如下:

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
软件
前端设计
程序设计
Java相关