当前位置: 代码迷 >> 综合 >> Error: PLS-00103: 出现符号 CREATE在需要下列之一时:
  详细解决方案

Error: PLS-00103: 出现符号 CREATE在需要下列之一时:

热度:83   发布时间:2023-12-08 12:16:01.0

概述:
    Oralce在begin 和end 之间创建数据表时,会出现如标题的错误。
 语句如下:       

  begin
   
create   table   create   table  studentinfobackup  as  
   
select   *    from  studentinfo
 
end ;

按下F8进行执行语句会出现如下错误

解决办法:     

begin
 
Execute  immediate  ' create table studentinfobackup as select *  from studentinfo ' ;
 
end  ;

  相关解决方案