MS SQL SP - 使用 EXEC 记录集
有没有办法处理从另一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表变量也适用于 SQL 2005 及更高版本。 临时表仅适用于 SQL 2000。
A table variable also wokrs in SQL 2005 and above. temp tables only for SQL 2000.