Database Normalization Flashcards

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/7

flashcard set

Earn XP

Description and Tags

Flashcards on Database Normalization

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

8 Terms

1
New cards

Normalization

Organizing data by separating it into multiple tables to reduce data duplication and increase data integrity.

2
New cards

Normalization

Helps to reduce duplication of data within the table itself.

3
New cards

Normalization

Customer information is stored in a single customer table, and that customer moves, we only have to change the ID, and it would be reflected appropriately in all of the other places in that table.

4
New cards

First Normal Form (1NF)

Ensures that the table contains no repeating groups or columns within the table itself.

5
New cards

Second Normal Form

All attributes in the table must depend on the primary key, ensuring data in different columns is related.

6
New cards

Third Normal Form

There should be no attributes in a table that do not depend on the primary key.

7
New cards

Normalization

Table contains no repeating groups and all attributes depend on the primary key.

8
New cards

Normalization

Applied to database by removing duplication within data tables and splitting data across multiple tables.