SQL - Database Design and Normalization
Analyze the table:
StudentEmail depends only on StudentID. What is the issue related to 2NF?
CREATE TABLE Registration (StudentID INT, ClassID INT, StudentEmail VARCHAR(100), PRIMARY KEY (StudentID, ClassID));StudentEmail depends only on StudentID. What is the issue related to 2NF?
