openrowset 为 self
我有一个返回大约 1000 行的存储过程。 我想从中SELECT
。
这是我想做的一个例子。
SELECT * FROM (EXEC my_proc)
这不起作用,所以我必须使用openrowset
。
我不热衷于这样做,因为它只会连接到自身。
除了创建临时表之外,还有其他选择吗?
I have a stored procedure that returns around 1000 rows.
I want to SELECT
from it.
Here is an example of what I want to do.
SELECT * FROM (EXEC my_proc)
That doesn't work so I have to use openrowset
.
I'm not keen on doing this because it would just be connecting to itself.
Aside from creating a temp table, are there any other options?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅从存储过程的结果集中选择列
See Select columns from result set of stored procedure