Oracle
 sql >> Database >  >> RDS >> Oracle

Elimina tabella se esiste

Non puoi eseguire direttamente istruzioni DDL da un blocco PL/SQL - dovrai invece usare ESEGUI IMMEDIATO:

declare
  i_cnt number;
begin
  select count(1) into i_cnt 
  from dba_tables where table_name=upper('foo') and owner=upper('bar'); 
  if i_cnt > 0 then 
    execute immediate 'drop table foo'; 
  end if;
end;