declare
num number;
begin
select count(1) into num from all_tables where TABLE_NAME = 'TABLE'; --查看存不存在该表
if num=1 then
execute immediate 'drop table TABLE'; --执行删除操作
end if;
'create table TABLE (
CELL1 varchar2(20) primary key not null,
CELL2 number
)';
end;