SQL - Database Design and Normalization
Given a table:
Manufacturer depends only on ItemID. How should the table be redesigned to comply with 2NF?
CREATE TABLE PurchaseDetails (OrderID INT, ItemID INT, ItemName VARCHAR(50), Quantity INT, Manufacturer VARCHAR(50), PRIMARY KEY (OrderID, ItemID));Manufacturer depends only on ItemID. How should the table be redesigned to comply with 2NF?
