用SQL批量插入数据的代码

复制代码 代码如下:

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

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐