ORACLE - Create Table
CREATE TABLE in oracle..
To accomplish this task we would use one of the available ORACLE client applications such as SQL*Plus or ORACLE SQL Developer which becomes standard applications with ORACLE 11G.
First of all we need to create session or log on-to ORACLE Instance.
We can do this if we have valid ORACLE user with granted system SESSION privilege.
CREATE TABLE statement

This way we just created table which have already specified some default values and some not null constraints.
If we want to add more constraints we can accomplish this using ADD clause of ALTER TABLE statement.


