用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
相关推荐
明月清风精进不止 2020-01-14
liuyang000 2019-12-27
dreamhua 2019-12-23
herohope 2019-12-17
zhaojp0 2019-12-14
明月清风精进不止 2019-12-01
li00lee 2016-10-21
dropkai 2010-04-24
zjyzz 2007-08-26
姚强 2011-09-06
dropkai 2012-08-07
yierxiansheng 2012-08-27
Omega 2015-01-11
huanging 2014-11-23
sflsgfs 2014-04-30
seegroung 2013-04-04