--创建临时表
create table #temp_student
(
StudentID varchar(50),
StudentName nvarchar(200)
)
--将存储过程数据保存到临时表
insert into #temp_student exec [dbo].[Procedure_Test]
--查询临时表
select * from #temp_student
--删除临时表
drop table #temp_student
--创建临时表
create table #temp_student
(
StudentID varchar(50),
StudentName nvarchar(200)
)
--将存储过程数据保存到临时表
insert into #temp_student exec [dbo].[Procedure_Test]
--查询临时表
select * from #temp_student
--删除临时表
drop table #temp_student