我正在创建一个存储过程,如果尚未插入记录,则需要进行插入。
用户可以多次运行此存储过程。我正在使用 SQL Server 2008
我的查询如下。它没有给出任何错误,但也没有做任何事情。如果我删除 If not exist 并使用 select 进行简单的插入,它将第一次工作,然后由于记录已经存在而给出错误。
CREATE PROCEDURE LoadRecords
@ADD_BY varchar(10)
,@YEAR varchar(4)
,@Inserted int OUTPUT
AS
BEGIN
DECLARE @OFF char(2)
DECLARE @Year char(4)
DECLARE @ID varchar(9)
set @Inserted =0
/*check if record exists or not */
IF NOT EXISTS(
Select F.OFF, (@YEAR ), F.ID, F.Form, @ADD_BY
from Table1 as F
Left Join Table2 R
ON F.ID = R.ID
and F.OFF = R.OFF
and F.Year = R.Year
where F.Year = (@Year -1 )
and @OFF= F.OFF
and @Year = F.Year
and @ID= F.ID
and @Form = F.Form
)
/*insert values if records do not exist */
INSERT INTO Table1 (
OFF, YEAR, ID, Form ,ADD_BY)
Values(@OFF, @Year, @ID , @Form, @ADD_BY)
SET @Inserted =@@ROWCOUNT
END
GO