循環(huán)插入代碼如下:DECLARE @MyCounter INT
SET @MyCounter = 0 /*設(shè)置變量*/
WHILE (@MyCounter < 2) /*設(shè)置循環(huán)次數(shù)*/
BEGIN
WAITFOR DELAY '000:00:10' /*延遲時(shí)間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
該文章在 2022/6/21 17:45:48 編輯過(guò)