
CREATING
TABLE IN ORACLE DATABASE: - Table
is the combination of rows and columns, it is object of user or schema. In database
the data is stored in the form of Tables.
To create table in Oracle: -
Syntax: -
CREATE TABLE <tablename>
( colname datatype (size),
colname datatype (size),
---------------------);
Rules
that...