Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个返回 110 列的存储过程,我想将来自该存储过程的数据插入到临时表中。
这是一种解决方案
select * into #tempTable from users -- it is working fine
但是来到这里
EXEC Sp_Users_get 12 into #tempTable
它不工作。
请帮我解决
INSERT INTO #TempTable EXEC Sp_Users_get 12 GO
看到这个,我想可能会有你的答案..
从存储过程结果集中选择列
也检查一下
如何将数据从存储过程插入到表中 - 2 种不同的方法