DBMS
DBMS
TNAME
TABTYPE CLUSTERID
DE PT
TABLE
EMP
TABLE
1 row Created.
Commit complete.
SQL> insert into dept values (20, 'RESEARCH', 'DALLAS') ;
1 row created.
Commit complete.
sQL> insert into dept values (30, 'SALES, ' CHICAGO') ;
SQL> insert into emp values (7521, WARD', 'SALESMAN', 7698,
to date('22-2-1981', * dd-mm-yyyy'), 1250, 500, 30) :
1 row created.
Commit complete.
SQL> insert into emp values (7654, 'MARTIN', ' SALESMAN', 7698,
to_date ('28-9-1981', ' dd-mm-yyyy'), 1250, 1400, 30) ;
1 row created.
Commit complete.
SQL> insert into emp values (7844, TURNER' 'SALESMAN', 7698,
to date ('8-9-1981', ' dd-mm-yyyy'), 1500, 0, 30) ;
1 row Created.
Commit complete.
sQL> insert into emp values (7876, 'ADAMS, 'CLERK', 7788,
to date ('13-JUL-87', 'dd-mm-yyyy'), 1100, null, 20) :
1 row created.
Commit complete.
SQL> insert into emp values (7900, 'JAMES', 'CLERK', 7698, to date('3
12-1981', ' dd-mm-yyyy'), 950, null, 30);
1 row created.
Commit complete.
SQL> insert into emp values (7934, 'MILLER', 'CLERK ',
7782, to date ('23-1-1982,'dd-mm-yyyy'), 1300, null, 10) :
1 row created.
Commit complete.
SQL> select *from emp;
EMPNO ENAME JOB MGR HIRE DATE SAL
COMM
DEPTNO
Commit complete.
SQL> insert into emp values (7839, 'KING', PRESI DENT', null,
to date ('17-11-1981','dd-mm-yyyy'), 5000, null, 10):
1 roW Created,
Commit complete.
SQL> insert into emp values (7698, 'BLAKE', "
MANAGER', 7839,
to date ('1-5-1981', 'dd-mm-yyyy'), 2850, null, 30);
1 row Created.
Commit complete.
SQL> insert into emp values (7782, 'CLARK' , 'MANAGER', 7839,
to date ('9-6-1981' , 'dd-mm-yyyy' ), 2450, null, 10) ;
1 roW Created.
Commit complete.
SQL> insert into emp values (7566, 'JONES',
'MANAGER', 7839,
to date ('2-4-1981', ' dd-mm-yyyy'), 2975, null, 20);
1 rowW Created.
Commit complete.
SQL> insert into emp values (7788, SCOTT', 'ANALYST', 7566,
to date ('13-JUL-87 ', ' dd-mm-yyyy'),3000, null, 20) ;
1 row Created.
Commit complete.
SQL> insert into emp values (7902, 'FORD',
ANALYST', 7566,
to date ('3-12-1981 ','dd-mm-yyyy') 3000, null, 20) ;
1 roW Created.
Commit complete.
SQL> insert into emp values (7369, 'SMITH', 'CLERK', 7902,
to date ('17-12-1980",'dd-mm-yyyy'), 800, null, 20):
1 row Created.
Commit complete.
SQL> insert into emp values (7499, 'ALLEN' , 'SALESMAN' , 7698,
to date ('20-2-1981', 'dd-mm-yyyy'), 1600, 300, 30) :
1 rowW Created.
Commit complete.
DEPTNO
DEPTN0
DEPTNO
30
DEPTNO
7900 JAMES CLERK 7698 03- DEC-81 950
30
14 rows selected.
14 rows selected.
30 SALES CHICAGO