DMi Lab Record
DMi Lab Record
Faculty of technology
Department of Information Technology (MSc)
Data Mining Laboratory Record
1|Page
Router Mapping
Joiner Mapping
2|Page
Sorter Mapping
3|Page
Expression Mapping
4|Page
Aggregator Mapping
5|Page
SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jun 13 04:43:37 2022
Connected.
SQL> create table course(cid number(4) primary key, cname varchar(12) not null, ch number(3));
Table created.
SQL> create table student1(sid number(3) primary key, sname varchar2(20), dept varchar2(20), cid
number(4) references course(cid));
Table created.
CH NUMBER(3)
SNAME VARCHAR2(20)
DEPT VARCHAR2(20)
CID NUMBER(4)
6|Page
Enter value for cid: 1001
1 row created.
1 row created.
CID CNAME CH
7|Page
1 row updated.
SQL> commit;
Commit complete.
1 row deleted.
no rows selected
Rollback complete.
8|Page
Table altered.
9|Page