mysqlのストアドプロシージャ(sp_test)の結果がテーブルで返ってくるのですが、これを一時テーブルに格納する方法はあるのでしょうか?
例えば下記のようなやり方ではエラーとなります。
試した方法1:
create temporary table tmptable
(
call sp_test()
);
試した方法2:
prepare getExtends from 'call sp_test()';
create temporary table tmptable(execute getExtends);
deallocate prepare getExtends;
回答1件
あなたの回答
tips
プレビュー