Normalization 2
1NF
OrderID CustomerName CustomerEmail ProductName ProductCategory Quantity Price OrderDate
1 Alice Smith alice@[Link] Laptop Electronics 1 1000 2023-03-01
2 Bob Jones bob@[Link] Headphones Electronics 2 150 2023-03-02
3 Alice Smith alice@[Link] Notebook Stationery 3 15 2023-03-05
2NF
TABLE: Customer
CustomerID CustomerName CustomerEmail
1 Alice Smith alice@[Link]
2 Bob Jones bob@[Link]
TABLE: Product
ProductID ProductName ProductCategory Price
1 Laptop Electronics 1000
2 Headphones Electronics 150
3 Notebook Stationery 15
TABLE: Order
OrderID CustomerID ProductID Quantity OrderDate
1 1 1 1 2023-03-01
2 2 2 2 2023-03-02
3 1 3 3 2023-03-05
3NF
TABLE: Customer
CustomerID CustomerName CustomerEmail
1 Alice Smith alice@[Link]
2 Bob Jones bob@[Link]
TABLE: Product
ProductID ProductName ProductCategory Price
1 Laptop Electronics 1000
2 Headphones Electronics 150
3 Notebook Stationery 15
TABLE: Order
OrderID CustomerID OrderDate
1 1 2023-03-01
2 2 2023-03-02
3 1 2023-03-05
TABLE: OrderDetails
OrderID ProductID Quantity
1 1 1
2 2 2
3 3 3