In this tutorial i'll show you many different type to manage and create the table.
Table is basic storage unite of data, and oracle table can store data in row column format.
Using this statement you can create table in oracle.
Before you create table you must have
you he owner of the table must have a quota for the tablespace that contains the table, or the
Syntax :
Parameter Name or Arguments :
you can't user the spacial character or constraint of the oracle or any schema name or same
name.
column, like filter process.
- Create Table
- Alter Table
Table is basic storage unite of data, and oracle table can store data in row column format.
Using this statement you can create table in oracle.
Before you create table you must have
CREATE TABLE
system privilege, and one more thinkyou he owner of the table must have a quota for the tablespace that contains the table, or the
UNLIMITED TABLESPACE
system privilege.Syntax :
CREATE TABLE tbl_name
(
ColumnName1 Datatype [Constraint],
ColumnName2 Datatype [Constraint],
.
.
.
ColumnNamen Datatype [Constraint]
);
(
ColumnName1 Datatype [Constraint],
ColumnName2 Datatype [Constraint],
.
.
.
ColumnNamen Datatype [Constraint]
);
Parameter Name or Arguments :
- ColumnName
you can't user the spacial character or constraint of the oracle or any schema name or same
name.
- Datatype
column, like filter process.
- Constraint
CHECK, PRIMARY KEY, UNIQUE, NOT NULL, etc.
Example :
That's are the exploration of Creating Table.
And You can see Alter Table statement in my next tutorial.
Create Table |
And You can see Alter Table statement in my next tutorial.
No comments:
Post a Comment
Thank you for give me feedback : )