Answer:
A database is a collection of related data which represents some aspect of the real world. A database system is designed to be built and populated with data for a certain task.
Step-by-step explanation:
Basic Syntax for CREATE
CREATE TABLE table_name
(
column1 datatype(size),
column2 datatype(size),
column3 datatype(size),
.....
columnN datatype(size),
PRIMARY KEY( one or more columns )
);
Example
create table emp(
empno number(4,0),
ename varchar2(10),
job varchar2(9),
mgr number(4,0),
hiredate date,
sal number(7,2),
deptno number(2,0)
PRIMARY KEY (ID)
);
Field Type Null Key Default Extra
EMPNO number(4,0) N0 PRI
ENAME varchar2(10) YES – NULL
JOB varchar2(9) NO – NULL
MGR number(4,0) NO – NULL
HIRE DATE date NO – NULL
SAL number(7,2) NO – NULL
DEPTNO number(2,0) NO – NULL