gpt4 book ai didi

sql-server - 如何将 udtt 传递到 SQL Server Management Studio 中的存储过程

转载 作者:行者123 更新时间:2023-12-02 01:02:48 25 4
gpt4 key购买 nike

我有一个 SP prc_Foo_Delete,它具有以下签名:

ALTER PROCEDURE [prc_Foo_Delete]
@fooIds [int_udtt] READONLY,
@deleteReason int,
@comment nvarchar(512),
@deletedBy nvarchar(128)

int_udtt 定义为:

CREATE TYPE [int_udtt] AS TABLE(
[Id] [int] NOT NULL,
PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (IGNORE_DUP_KEY = OFF)
)

我尝试使用以下脚本在 Management Studio 中调用此 SP:

DECLARE @return_value int
EXEC @return_value = [prc_Foo_Delete]
@fooIds = 3,
@deleteReason = 2,
@comment = N'asfdasdf',
@deletedBy = N'asdfa'

SELECT 'Return Value' = @return_value
GO

我得到的错误是:操作数类型冲突:int 与 int_udtt 不兼容。如何传入一个 int 或 int 列表来在此工具中调用(我知道如何在代码中执行此操作,但不知道如何在 Management Studio 中执行此操作)。

最佳答案

由于您已将用户定义类型定义为存储过程的参数,因此在调用存储过程时也需要使用该用户定义类型!您不能只发送一个INT,而是......

尝试这样的事情:

-- define an instance of your user-defined table type
DECLARE @IDs [int_udtt]

-- fill some values into that table
INSERT INTO @IDs VALUES(3), (5), (17), (42)

-- call your stored proc
DECLARE @return_value int
EXEC @return_value = [prc_Foo_Delete]
@fooIds = @IDs, -- pass in that UDT table type here!
@deleteReason = 2,
@comment = N'asfdasdf',
@deletedBy = N'asdfa'

SELECT 'Return Value' = @return_value
GO

关于sql-server - 如何将 udtt 传递到 SQL Server Management Studio 中的存储过程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8439711/

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