Hi,
I want to design a table with the sales for further use in my database.
I am only displaying two types of Products here, but in reality it could be about 20.
What would be the correct table design in according to the first normal form?
or:
Thank you very much for your help!
I want to design a table with the sales for further use in my database.
I am only displaying two types of Products here, but in reality it could be about 20.
What would be the correct table design in according to the first normal form?
Code:
Date Department Seller SummaryField Volume
01.01.2015 East Ross Apple 4
01.01.2015 East Ross Banana 4
or:
Code:
Date Department Seller Apple Banana
01.01.2015 East Ross 4 4
01.01.2015 East Hardmann 4 2
01.01.2015 East Pearson 5 5
01.01.2015 West Specter 6 3
Thank you very much for your help!