用SQL批量插入数据的代码

<div class="codetitle"><a style="CURSOR: pointer" data="10236" class="copybut" id="copybut10236" onclick="doCopy('code10236')"> 代码如下:

<div class="codebody" id="code10236">
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

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 &#39;EastRiver&#39; 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...