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;