问题:
How do I do a SELECT * INTO [temp table] FROM [stored procedure]
? 如何SELECT * INTO [temp table] FROM [stored procedure]
进行SELECT * INTO [temp table] FROM [stored procedure]
? Not FROM [Table]
and without defining [temp table]
? 不是FROM [Table]
,也没有定义[temp table]
?
Select
all data from BusinessLine
into tmpBusLine
works fine. 从BusinessLine
Select
所有数据到tmpBusLine
可以正常工作。
select *
into tmpBusLine
from BusinessLine
I am trying the same, but using a stored procedure
that returns data, is not quite the same. 我正在尝试相同的方法,但是使用返回数据的stored procedure
并不完全相同。
select *
into tmpBusLine
from
exec getBusinessLineHistory '16 Mar 2009'
Output message: 输出信息:
Msg 156, Level 15, State 1, Line 2 Incorrect syntax near the keyword 'exec'. 消息156,级别15,状态1,第2行关键字“ exec”附近的语法错误。
I have read several examples of creating a temporary table with the same structure as the output stored procedure, which works fine, but it would be nice to not supply any columns. 我已经阅读了几个创建与输出存储过程具有相同结构的临时表的示例,该示例工作正常,但是最好不要提供任何列。
解决方案:
参考一: https://stackoom.com/question/2k3m/将存储过程的结果插入临时表参考二: https://oldbug.net/q/2k3m/Insert-results-of-a-stored-procedure-into-a-temporary-table
来源:oschina
链接:https://my.oschina.net/u/3797416/blog/3217396