gpt4 book ai didi

sql - 从存储过程结果集中插入/更新表上的数据

转载 作者:行者123 更新时间:2023-12-04 17:12:44 24 4
gpt4 key购买 nike

我有一个称为proc_item的存储过程,该过程从不同的表中获取数据(使用连接)。我希望存储过程的结果集可以在另一个称为Item的表上插入(如果数据是新的)或更新(如果数据已经存在)。有人可以给我一些有关如何执行此操作的想法吗?我是sql,存储过程和循环的新手。

谢谢

最佳答案

看一下@srutzky的解决方案,它更适合此问题

您可以做的第一件事是将所有内容写入表中。
为此,您需要定义一个表,该表具有与存储过程返回的列相同的列:

DECLARE @myTempTableName TABLE(
dataRow1 DATATYPE,
dataRow2 DATATYPE,
...
)

INSERT INTO @myTempTableName(dataRow1, dataRow2,...)
EXEC( *mystoredprocedure* )

现在,您需要的所有数据都在表中。下一步是检查您需要更新什么以及要插入什么。假设datarow1是用于检查其是否已经存在的变量(例如:相同的名称或相同的ID) ,说它是唯一的(否则,您还需要某些女巫是唯一的-迭代临时表时需要)
DECLARE @rows INT,
@dataRow1 DATATYPE,
@dataRow2 DATATYPE, ...

-- COUNT Nr. of rows (how many rows are in the table)
SELECT
@rows = COUNT(1)
FROM
@myTempTableName

-- Loop while there are still some rows in the temporary table
WHILE (@rows > 0)

BEGIN

-- select the first row and use dataRow1 as indicator which row it is. If dataRow1 is not unique the index should be provided by the stored procedure as an additional column
SELECT TOP 1
@dataRow1 = dataRow1,
@dataRow2 = dataRow2, ..
FROM
@myTempTableName

-- check if the value you'd like to insert already exists, if yes --> update, else --> insert
IF EXISTS (SELECT * FROM *TableNameToInsertOrUpdateValues* WHERE dataRow1=@dataRow1)
UPDATE
*TableNameToInsertOrUpdateValues*
SET
dataRow2=@dataRow2
WHERE
dataRow1=@dataRow1

ELSE
INSERT INTO
*TableNameToInsertOrUpdateValues* (dataRow1, dataRow2)
VALUES
(@dataRow1, @dataRow2)


--IMPORTANT: delete the line you just worked on from the temporary table
DELETE FROM
@myTempTableName
WHERE
dataRow1= @dataRow1

SELECT
@rows = COUNT(1)
FROM
@myTempTableName

END -- end of while-loop

声明可以在此查询开始时完成。我将其放在使用它的地方,以便于阅读。

我从中获取代码的一部分,并且对遍历表有帮助(来自@cmsjr的解决方案,不带游标): Cursor inside cursor

关于sql - 从存储过程结果集中插入/更新表上的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6197844/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com