用SQL批量插入數(shù)據(jù)的存儲過程
更新時間:2011年03月20日 19:17:32 作者:
用SQL批量插入數(shù)據(jù)的存儲過程,需要的朋友可以參考下。
循環(huán)插入:
DECLARE @MyCounter INT
SET @MyCounter = 0 /*設置變量*/
WHILE (@MyCounter < 2) /*設置循環(huán)次數(shù)*/
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
復制代碼 代碼如下:
DECLARE @MyCounter INT
SET @MyCounter = 0 /*設置變量*/
WHILE (@MyCounter < 2) /*設置循環(huán)次數(shù)*/
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
相關文章
set rs=server.CreateObject("adodb.recordset") 的中文詳
這是創(chuàng)建一個數(shù)據(jù)庫實例,但是什么是數(shù)據(jù)庫實例?還有rs這個東西也不是一個變量,他在程序里邊rs.update 等操作是如何進行的?打開的表示如何接收rs傳過來的數(shù)據(jù)的?2010-08-08SQL Server--怎樣用ADO在SQL SERVER中建庫,建表
SQL Server--怎樣用ADO在SQL SERVER中建庫,建表...2006-08-08