Unit 3 Flashcards

1
Q

What is Normal Form & what it’s types

A

🔵Normal forms are like rules or guidelines to store data in a table effectively to avoid redundancy duplication of data,reduce updation cost & improve data integrity.

🔵Each normal forms builds based on the previous one.

🔵1NF, 2NF, 3NF,BCNF(Boyce - Codd Normal Form),4NF,5NF.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Define Normalization & purpose of Normalization

A

Normalization is the process of organizing the data to reduce redundancy and improve integrity. It involves breaking database into two or more tables and defining relationship s between them.

?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

1NF

A

In the 1NF each column should have only one piece of information i.e atomic values or indivisible.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Functional Dependency

A

FD means one piece of information can determine the another piece of information.

Example:

Student table

If we know roll number of a student, we can figure out the name of the student.

We can say

Roll number 👉name

This means roll number functionaly determines the student name.

Functional dependency reduces redundancy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly