This is a pretty basic questions, but if I am given many tables and am told to create the relationships, I know how to do that on access, but how do I know which tables to connect?
The foreign key would typically be named in a way that would give some indication as to which field it is related to in another table. For example, say you have a Customers table and an Orders table;
tblCustomers
**********
CustomerID << Primary Key of tblCustomers
FirstName
LastName
tblOrders
*******
OrderID << Primary Key of tblOrders
CustomerID << Foreign Key to tblCustomers
OrderDate
It would also need to have a compatible data type. Did you design these tables?