I'm looking to create a database to manage my ebay sales.
I've attached a csv file which shows the format of that csv file is created in. The problem for a person with no programming experience is that when more than one item is ordered this is shown on more than one line so I can't just import it.
There are essentially 3 tables involved in the import:
1) Customers
2) Orders
3) Order Details
and my guess is that any process will need to follow that order of progression ie a customer needs created first so that a customer id can be inserted into the orders table and an order entry needs to be created before the order details as the order details depends on the order id.
I'm also guessing that I will probably want to split this up into several functions as I will want to check if the customer already exists before creating a new order and as ebay customers tend to use different user ids and email addresses I will want to check a range of fields to try and determine if the customer already exists. I will probably want to make that call myself as some customers have moved addresses and the person that has moved in has bought from me. That's just the nature of the type of business I'm in.
I've purchased the Access 2010 Inside Out so looking to focus my reading in the correct areas assuming I can make any sense of it so what do I need to accomplish this task.
I've also attached my database design as it currently stands so if you have any comments on it feel free to chip in.