Bạn không thể thực thi trực tiếp các câu lệnh DDL từ một khối PL / SQL - thay vào đó bạn sẽ phải sử dụng EXECUTE NGAY LẬP TỨC:
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;