How to check if a table exist in Oracle?

10.6k Views Asked by At

In Sql I check if a table exist with this code:

IF NOT EXISTS (SELECT NAME FROM SYSOBJECTS  
     WHERE NAME = 'Plane')
   CREATE TABLE Plane(Flight int)

How to do this check if a table not exist then i create it in Oracle because it throws exception if i try to create already existing table?

2

There are 2 best solutions below

0
On

you can check the data dictionary for that table

select table_name from user_tables where table_name='MYTABLE';
0
On

CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name (create_definition,...) [table_options] [partition_options]