Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数が呼び出されたときに返される一時テーブルを作成するにはどうすればよいですか?
これを参照してください:
create or replace procedure maketemptab is sqlstmt varchar2(500); begin sqlstmt := 'CREATE GLOBAL TEMPORARY TABLE(col1 varchar2(10))'; execute immediate sqlstmt; end;