Hi,
1)
I have figured out my necessary tables after lots of great help from people here.
An applicant can have many sites and a site has one form of a specific type
So I have:
-------------------------------
Table Applicants
applicantID (Primary Key)
applicant_name
applicant_address
Table Site
siteID (Primary Key)
applicantID (foreign key)
site name
site address
Table form
SiteID (foreign key)
misc. info
-------------------------
The form table is actually about 10 seperate tables of various data that occurs only once for each site, they are all referenced by the foreign key SiteID. is it ok not to have a primary key in these?
2)
Also I believe to make a foreign key in access you just create a field with the same name and data type as the PK and then link them in relationships. Is this correct?
3)
Any ideas where I can find tutorials on how to create queries to search and list specific criteria?
Many thanks again!
1)
I have figured out my necessary tables after lots of great help from people here.
An applicant can have many sites and a site has one form of a specific type
So I have:
-------------------------------
Table Applicants
applicantID (Primary Key)
applicant_name
applicant_address
Table Site
siteID (Primary Key)
applicantID (foreign key)
site name
site address
Table form
SiteID (foreign key)
misc. info
-------------------------
The form table is actually about 10 seperate tables of various data that occurs only once for each site, they are all referenced by the foreign key SiteID. is it ok not to have a primary key in these?
2)
Also I believe to make a foreign key in access you just create a field with the same name and data type as the PK and then link them in relationships. Is this correct?
3)
Any ideas where I can find tutorials on how to create queries to search and list specific criteria?
Many thanks again!