日期:2014-05-18 浏览次数:20604 次
create proc dbo.t2 as create table #temp ( …… ) insert into #temp exec t1 select * into #tt from #temp select * from #tt go
------解决方案--------------------
使用存储过程的结果,需要先建一个相同结构的表取接收数据
create table tb(operatetime ..,theTypeName...)
insert into tb exec t1