Infinite
More left to learn.
- Local time
- Today, 03:48
- Joined
- Mar 16, 2015
- Messages
- 402
Hello! I have currently 5 tables, and each one is for sales. They are as follows,
Now, all of those are are just tables for sales, what im trying to figure out, is it okay for me to have 5 different tables, all for the same thing, or 1 table, with lots of fields. The reason I have to have lots of fields is that in the Amazon and Ecwid, all the fields have different names. For instance, in the tblAmazonOrders, the item description, is just that. Description. For the item name in tblEcwidOrders, the description is Name. And that is just ONE of the many different field names, that all mean the same thing. So, should I have one field for all sales? Or, should I have 5? I know I shouldn't have 5, so what do I do now? Maybe have the data in a append query? And then have it delete all the data after it appends the query? Would something like that work? Thanks for all your answers!
Code:
tblAmazonOrders
tblEcwidOrders
tblVendorsMart
tblEarthOutdoors
tblShowSales
Now, all of those are are just tables for sales, what im trying to figure out, is it okay for me to have 5 different tables, all for the same thing, or 1 table, with lots of fields. The reason I have to have lots of fields is that in the Amazon and Ecwid, all the fields have different names. For instance, in the tblAmazonOrders, the item description, is just that. Description. For the item name in tblEcwidOrders, the description is Name. And that is just ONE of the many different field names, that all mean the same thing. So, should I have one field for all sales? Or, should I have 5? I know I shouldn't have 5, so what do I do now? Maybe have the data in a append query? And then have it delete all the data after it appends the query? Would something like that work? Thanks for all your answers!