1. 程式人生 > >Oracle如何判斷表存在,若存在則進行刪除

Oracle如何判斷表存在,若存在則進行刪除

declare 
      num   number; 
begin 
      select count(1) into num from all_tables where TABLE_NAME = upper('EMP') and OWNER='SCOTT'; 
      if   num=1   then 
          execute immediate 'drop table EMP'; 
      end   if; 
end;