我已经有了一个工作存储过程,它从tabletype中获取数据,如本例所示
CREATE PROCEDURE [dbo].[tblDefQ_Detail_INSERT]
@Quotient_D Quotient_D READONLY
AS
BEGIN
SET NOCOUNT ON;
INSERT INTO Quotient_D ([q_id], [item_id], [item_name])
SELECT
[q_id], [item_id], [item_name]
FROM
@Quotient_D
END
此存储过程将表类型中的值作为编码
CREATE TYPE [dbo].[Quotient_D] AS TABLE(
[q_id] [int] NULL,
[item_id] [int] NULL,
[item_name] [nvarchar](50) NULL
)
这很好用。
我现在想要的是一个UPDATE
存储过程,它使用
q_id
答案 0 :(得分:1)
CREATE PROCEDURE [dbo].[tblDefQ_Detail_UPDATE]
@Quotient_D Quotient_D READONLY
AS
BEGIN
SET NOCOUNT ON;
UPDATE original
SET item_id = temp.item_id,
item_name = temp.item_name
FROM @Quotient_D temp
JOIN Quotient_D original ON temp.q_id = original.q_id
END