in oracle 6i i want to write a code that checks if the table is existed or not
for example i want to say
if table history exist then
delete * from history
update from history ......... whatever
else if not exist then
create table history as select * from whatever
end if
for example i want to say
if table history exist then
delete * from history
update from history ......... whatever
else if not exist then
create table history as select * from whatever
end if