是否可以将存储过程的多个结果集设置为临时表变量?
我写了一个存储过程,例如,
Create proc test1
(
@param1 int,
@param2 int
)
as
Begin
Select Id, Name from Table1 where column1=@param1;
Select Id, Age, Address from Table2 where column1=@param2;
End
当我执行此 sp 时,它将返回 2 个表(记录集)。
现在,我想将这 2 个记录集设置为 2 个临时表变量。
我怎样才能做到这一点?