Are there help entries providing best practices for normalizing data? Typically data comes in somewhat non-normalized, records with duplicate (non-unique) or empty values. Take as an example, the following table, Grocery_Shopping:
Day | Qty | Item | Type |
Mon | 4 | apples | fruit |
Mon | 10 | snap beans | vegetable |
Tues | 13 | strawberries | |
Tues | 6 | potatoes | vegetable |
Tues | 5 | kiwi | fruit |
Thurs | 23 | bananas | fruit |
Thurs | 6 | bananas | fruit |
I can manually create a unique table of Types, then manually change field type in Grocery_Shopping.type so it's linked to Types.type. Similarly I could do the same, creating unique reference tables for Day and Item. What many users need to a set of rules, automations, links, etc which automatically update reference tables when additional entries into Grocery_Shopping are imported. If there is such a set of best practices, please point in their direction. Thanks.