Database Normalization Answers
Database Normalization Answers
Example:
Before (1NF):
| Student_ID | Name | Course_ID | Course_Name |
|-----------|------|----------|------------|
|1 | John | C101 | Math |
|2 | Jane | C102 | Science |
After (2NF):
**Students Table**
| Student_ID | Name |
|-----------|------|
|1 | John |
|2 | Jane |
**Courses Table**
| Course_ID | Course_Name |
|----------|------------|
| C101 | Math |
| C102 | Science |
**Enrollment Table**
| Student_ID | Course_ID |
|-----------|----------|
|1 | C101 |
|2 | C102 |