drop and create table in oracle
843854May 17 2004 — edited Nov 20 2014Hi,
How do I execute these queries in Oracle 9i?
create table if not exists table_name (val int);
drop table if exists table_name;
They give "ORA-00922: missing or invalid option" and "ORA-00933: SQL command not properly ended" errors respectively.
Thanks.