SQL - Database Design and Normalization
Consider the following table:
Which statement is true regarding its 2NF compliance?
CREATE TABLE ProductOrders (OrderID INT, ProductID INT, ProductDescription VARCHAR(100), Quantity INT, PRIMARY KEY (OrderID, ProductID));Which statement is true regarding its 2NF compliance?
