怎样将存储过程中的变量存储到表中?该如何处理

怎样将存储过程中的变量存储到表中?怎样将存储过程中的变量存储到表中?[解决办法]不明白楼主的意图,说详细

怎样将存储过程中的变量存储到表中?
怎样将存储过程中的变量存储到表中?

[解决办法]
不明白楼主的意图,说详细点。
[解决办法]
create table tbtest(和存储过程输出一致的结构)
insert into tbtest
exec 存储过程

select * from tbtest