I am trying to create a database that will allow the user to Create new projects and assign them with a contact and organisation.
In other words, there should be Organisations that can have multiple contacts linked to it and each contact can have multiple conversations attached to it.
An organisation can also have multiple Projects attached to it whioch are in turn attached to a contact.
Can anyone help me with the table setup and relationships?
Right now I have four tables:
tblNotes
tblContact
tblOrganisation
tblProject
tblNotes with a foreign key (ContactID) is linked to primary key (ContactID)in tblContact.
tblContact with the foreign key (OrgID) is linked to primary key (OrgID) in the table tblOrganisation.
tblOrganisation with the foreign key (ProjectID) is linked to primary key (ProjectID) in the table tblProject
I can't seem to get the tables to link together for example I cannot get my tblOrganisation to see many projects asrequired.
Can anyone help wuth a suggested table layout and relationships?
Many Thanks
In other words, there should be Organisations that can have multiple contacts linked to it and each contact can have multiple conversations attached to it.
An organisation can also have multiple Projects attached to it whioch are in turn attached to a contact.
Can anyone help me with the table setup and relationships?
Right now I have four tables:
tblNotes
tblContact
tblOrganisation
tblProject
tblNotes with a foreign key (ContactID) is linked to primary key (ContactID)in tblContact.
tblContact with the foreign key (OrgID) is linked to primary key (OrgID) in the table tblOrganisation.
tblOrganisation with the foreign key (ProjectID) is linked to primary key (ProjectID) in the table tblProject
I can't seem to get the tables to link together for example I cannot get my tblOrganisation to see many projects asrequired.
Can anyone help wuth a suggested table layout and relationships?
Many Thanks