NORMALISATION SUMMARY
UNNORMALISED FORM (0NF):-
• Repeated data entries and fields (redundant data)
• Data is no atomic (ex: employee name -Kaila Bennett is non atomic, it
will be separated into first name and last name Kaila in a field and
Bennett in another field in order to become atomic)
• Table has no primary key
• Data is inconsistent
1ST NORMAL FORM (1NF):-
• Data is atomic
• No repeated fields/ records
• Table has a primary key
2nd NORMAL FORM (2NF):-
• 1ST normal form is done
• No partial dependencies (if data does not depend on the primary key it
will be removed from the table)
• Many tables will be formed and each one has a its own primary key
3rd NORMAL FORM (3NF):-
• 2ND Normal form is done
• Tables will be linked and relationships formed (primary keys and foreign
keys)