Assignment Title Database Normalization
Assignment Title Database Normalization
Roll No: 10
Class: ADS IT
2. Normalization to 2NF:
The StudentCourses table has partial dependencies that violate 2NF. The goal
is to decompose this table into three separate tables: Students, Courses, and
Enrollments to eliminate redundancy.
Students Table:
Stores student information.
Courses Table:
Stores course information.
Enrollments Table:
Tracks which students are enrolled in which courses.
3. Insert Data into Normalized Tables
After creating the tables, sample data can be inserted into each table:
DELETE Queries
Conclusion: