declare 
v_count integer;
begin
select count(*) into v_count from user_tables where table_name='MAX1';
if v_count>0 then
execute immediate 'drop table MAX1';
execute immediate ' CREATE TABLE MAX1 .....';