You are on page 1of 1

0 Normal Form:

Deapartment :
(Dept_num (pk),Dept_name,location ,mang_name,mgr_id,tel
extn,cust ,cust_name,Date_complaint,nature_complaint)

# Removing Repeating groups to new table

1st Normal Form:


Dept : Dept_num,Dept_name,location,tel extn ,MGR_name,Mgr_id
cust : Dept_id , cust_id (composite PK), cust name, complaint , nature of complaint

2st Normal Form:


# remove partial dependencies

Dept : Dept_num,Dept_name,location,tel extn, MGR_name,Mgr_id


cust : Dept_id , cust_id (composite PK), date of complaint , nature of complaint
cust_info : cust_id (PK) , cust name

3st Normal Form


# remove transitive dependencies
Dept: Dept_num,Dept_name,location,tel extn
MGR :MGR_name,Mgr_id(PK)
cust : Dept_id , cust_id (composite PK), date of complaint , nature of complaint
cust_info : cust_id (PK) , cust name

You might also like