Relationships are something YOU create. You don't have to have relationships, though it's usually a really damned good idea to have them!
In Access, the easiest way to create a relationship is using the Access built-in tools.
Remember, I don't have Access2007, so what I will tell you is for Access2003 and may not be *quite* the same in 2007.
Steps:
(1) Open Access.
(2) Create your tables.
For a simple example, let's say we have a table of people:
Code:
TABLE: PEOPLE
personID AUTONUMBER
firstName TEXT
lastName TEXT
email TEXT
and a table of things that each person likes
TABLE: LIKES
personID NUMBER (INT)
likes TEXT
(3) Click on TOOLS menu.
(4) Click on RELATIONSHIPS menu item (you might have to click on the double down arrow to find it)
A window appears with a dialog box that shows all your tables. Click on each of your two tables (or more if you have more) and then click on ADD, until all your tables are displayed. Then you can click CLOSE on that dialog.
(5) Find the two fields in two tables that are supposed to have matching values. (In my example, find
personID in both tables.) Click on ONE of those fields and then DRAG the mouse (with the button still down) to the other field.
(6) Another dialog box should appear. Titled "Edit Relationship".
Check the checkbox labelled "Enforce Referential Integrity".
Optionally, click on "Cascade Delete Related Records".
PRESTO! You have defined a relationship.
As a bonus, you also now have a nice "Entity-Relationship" (abbreviated "ER" or "E-R") diagram of your database!
Now it's your turn to do more reading and learning on your own.