举例:
在存储过程中执行 begin create table temp_table1 as select * from table1 end; 提示错误:PLS-00103: 出现符号 "CREATE"在需要下列之一时:
解决方法:
begin execute immediate 'create table temp_table1 as select * from table1'; end;