LAB 12 M Ahmad L1S17BSCS0010
LAB 12 M Ahmad L1S17BSCS0010
M AHMAD
L1S17BSCS0010
Entities, Attributes and Relations
RELATIONAL SCHEMA:
CREATE TABLE Department
(
DeptId INT NOT NULL,
Location INT NOT NULL,
Phone INT NOT NULL,
HOD INT NOT NULL,
Name INT NOT NULL,
PRIMARY KEY (DeptId)
);
RELATIONAL SCHEMA: