Hello all, I am trying to develop an Access DB for items I've bought and sold on Ebay. I am however trying to start using a normalised format - as I want to do the job properly.
1) Does anyone know of any tutorials which would help me?
2) I just thought I'd run something by you re the relations of my tables.
I have at the moment 3 tables
- Name
NameID,EbayID,First_Name,Second_Name,
1,chuckster,Chuck,Wormington
2,Jakester,Jacob,Fotheringay
etc...
- Item
ItemID,Description
1,Washing Wachine
2,Scooter
etc...
- Deals
dealID,ItemID,SellerID,PurchaserID
1,1,1,2
2,1,2,1
etc...
My relationships are
Itemid(items) -> Itemid(deals)
nameid(name) -> Sellerid(deals)
nameid(name) -> Buyerid(Deals)
Am I going about this the right way?
Any help greatly received.
Thanks
Doug