In Oracle, CREATE TABLE statement is used To create a new table in the Oracle database,
we have to use CREATE TABLE statement where we need a table name and define its columns and datatype for each column.
Syntax:
CREATE TABLE table_name ( column_1 data_type column_constraint, column_2 data_type column_constraint, ... table_constraint );
In this syntax: