手机
当前位置:查字典教程网 >编程开发 >ASP教程 >用SQL批量插入数据的存储过程
用SQL批量插入数据的存储过程
摘要:循环插入:复制代码代码如下:DECLARE@MyCounterINTSET@MyCounter=0/*设置变量*/WHILE(@MyCoun...

循环插入:

复制代码 代码如下:

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

【用SQL批量插入数据的存储过程】相关文章:

批量文件自动搜索替换插入器 Ver2.1

利用ASP从远程服务器上接收XML数据的方法

ASP调用带参数存储过程的几种方式

几例在ASP存储过程的使用方法

asp 输入输出的存储过程

SQL SERVER编写存储过程小工具

经典的分页完整程序+注释

SQL Server 存储过程的分页

各种存储过程使用指南

批量复制数据

精品推荐
分类导航