
It has been said to be included in UNF / 1NF / 2NF / 3NF, is this correct?
Show the given data as a relation in UNF (abnormalized data).
Customer (CustomerID, FirstName, LastName, Address, City, Phone, State, Postcode, Qty, ProductNo, Description, Unit Price, Total, Total, Shipment, Tax Rate, Date, Order No.)
Show data as a ratio / s in 1NF. (Specify any keys.)
Customer (CustomerID, FirstName, LastName, Address, City, State, Phone, State, Postcode) Product (ProductNo, Qty, Description, Unitprice, total, subtotal, shipping, Tax rate (s), CustomerID (FK).) Order ( OrderNo, Date, ProductNo (FK).)
Show data as a ratio / s in 2NF. (Specify any keys.)
(CustomerID, FirstName, LastName, Address, City, Phone, State, Postcode)
(ProductNo, Qty, Description, UnitPrice, CustomerID (FK), Total (FK).)
(OrderNo, Date, CustomerID (FK), ProductNo (FK).)
(, , , , (FK), CustomerID (FK))
/s 3NF. ( .)
(CustomerID, FirstName, LastName, Address, City, Phone, State, Postcode)
(ProductNo, , . CustomerID (FK), Total (FK))
(OrderNo, Date, CustomerID (FK).ProductNo(FK))
(, , ProductNo (FK), CustomerID (FK))
(, , (FK), OrderNo (FK))
Qty (QtyID, Qty, ProductNo (FK), OrderNo (FK).)