我已经开始阅读关于表值参数的说明
这些TVP可以用作输入参数和输出参数吗?
将它们作为输出参数是否有意义?
我觉得可能有一个TVP作为一个存储过程的输出,然后进入另一个存储过程 - 可能吗?
调用第一个sproc然后使用第一个spP调用第二个sproc的脚本语法是我不确定的。
修改
为我的帖子混淆而道歉 - 似乎初始程序结果需要进入TVP - 我认为TVP需要参与 in the sproc。所以我所谈论的模型如下 - 希望有效利用TVP ......
CREATE TYPE myfirstTVP AS TABLE (id INT NOT NULL PRIMARY KEY);
GO --<<this sproc will find the ids (+ other fields) that need to be investigated
CREATE PROC test1 as
SELECT 1 UNION
SELECT 2 UNION
SELECT 3;
GO
GO --<<this sproc uses the found ids to do one aspect of the investigation
CREATE PROC test2
@t2 myfirstTVP READONLY
AS
SELECT id*2
FROM @t2;
GO
GO --<<this sproc uses the found ids to do another aspect of the investigation
CREATE PROC test3
@t4 myfirstTVP READONLY
AS
SELECT id*3
FROM @t4;
GO
--<<this is where the TVP is used and the sprocs are called
DECLARE @t3 myfirstTVP ;
INSERT INTO @t3
EXEC test1;
EXEC test2 @t3;
EXEC test3 @t3;
答案 0 :(得分:2)
我不是100%确定你想要实现的目标,但你可以在某种意义上模拟'输出'参数的行为,
CREATE TYPE LIST_OF_INT AS TABLE (id int not null primary key);
GO
create procedure test1 as
begin
declare @t1 LIST_OF_INT;
insert into @t1 (id) values (1);
select * from @t1;
end;
GO
declare @t2 LIST_OF_INT ;
insert into @t2
EXEC test1;
select * from @t2;
答案 1 :(得分:1)
我认为你从你引用的MSDN链接中错过了这一点。
表值参数必须作为输入READONLY参数传递给 Transact-SQL例程。