Totally new to Access and databases in general. I am trying to set up a very simple database but when I'm trying to create relationships between my tables, they automatically set one-to-many in the wrong direction (for instance, I have an account names table that I want to link to a contacts table. For every account, there can be multiple contacts (but only one account per contact), but access keeps trying to put 'one' on the contacts side and 'many' on the account name side). I'm having similar problems with other tables, so I know it's something I'm not understanding right.
Here's part of my setup:
Contacts Table: ContactID (PK, autonumber), ContactFirstName, ContactLastName, various address/phone number fields. Not currently linked to anything else. Trying to link ContactID to foreign ContactID in Accounts table.
Accounts Table: AccountID (PK, autonumber), AccountName, AccountNotes, ContactID (foreign key-number, not autonumber). Currently linked to a junction table (one to many) which contains AccountID, StatementID,InvoiceID (shared PKs)
Hope that's enough info. Thx
Here's part of my setup:
Contacts Table: ContactID (PK, autonumber), ContactFirstName, ContactLastName, various address/phone number fields. Not currently linked to anything else. Trying to link ContactID to foreign ContactID in Accounts table.
Accounts Table: AccountID (PK, autonumber), AccountName, AccountNotes, ContactID (foreign key-number, not autonumber). Currently linked to a junction table (one to many) which contains AccountID, StatementID,InvoiceID (shared PKs)
Hope that's enough info. Thx
Last edited: