我需要将存储过程结果存储在临时表中。但是存储过程的结果可能是任何表中的任何列排序。
是否有一个通用表(未指定列),我们可以将任何表插入其中?我知道我可以使用函数,但可以使用存储过程吗?
这是代码:
begin transaction
create table temp_table as
exec my_store_proc 1,111
select * from temp_table
drop table temp_table
commit transaction
在上面的代码中,my_store_proc
结果是一个有 6 列的表(例如)