MS SQL SP - 使用 EXEC 记录集

发布于 2024-07-14 22:39:47 字数 199 浏览 11 评论 0原文

有没有办法处理从另一个 SP 中的 exec 返回的记录集? 整个记录集,最好不使用 OUTPUT

I.E.

我的存储过程 @var1 整数 作为 BEGIN

EXEC anotherSP @var1

-- 对 anotherSP 返回的记录集执行某些操作

END

Is there a way to work on a recordset returned from an exec within another SP? The whole recordset, preferably not using OUTPUT

I.E.

MyStoredProcedure
@var1 int
AS
BEGIN

EXEC anotherSP @var1

-- do something against the recordset returned by anotherSP

END

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隱形的亼 2024-07-21 22:39:47
CREATE PROC MyStoredProcedure
    @var1 int
AS
BEGIN
DECLARE #temp (
col1 ...
)

INSERT #temp
EXEC anotherSP @var1

-- do something against #temp

END

表变量也适用于 SQL 2005 及更高版本。 临时表仅适用于 SQL 2000。

CREATE PROC MyStoredProcedure
    @var1 int
AS
BEGIN
DECLARE #temp (
col1 ...
)

INSERT #temp
EXEC anotherSP @var1

-- do something against #temp

END

A table variable also wokrs in SQL 2005 and above. temp tables only for SQL 2000.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文