使用SQL Server表类型更新存储过程查询 - 如何?

时间:2015-12-29 21:49:57

标签: sql-server stored-procedures

我已经有了一个工作存储过程,它从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存储过程,它使用

中的where子句从此表类型中获取值
q_id

1 个答案:

答案 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