SQL - Database Design and Normalization
You have a table storing orders with multiple products in one column:
Products column stores product IDs separated by commas.
How do you redesign the schema to fully comply with First Normal Form (1NF)?
Orders(OrderID INT, Customer VARCHAR(50), Products VARCHAR(255))Products column stores product IDs separated by commas.
How do you redesign the schema to fully comply with First Normal Form (1NF)?
