A family of Microsoft relational database management systems designed for ease of use.
It's very rare for a sequential number to be required as a primary key; its only requirement in the vast majority of cases is for the values to be distinct, which is exactly what an autonumber gives you. The actual values of the numbers is irrelevant and need never be seen by users of the database.
Tables are related in two different ways:
1. By having a foreign key column in one table reference the primary key of another table. This is a one-to-many, or very occasionally a one-to-one, relationship type. Technically it's a unary relationship type. An example is where a CustomerID foreign key column in an Orders table references the CustomerID primryay key column of a Customers table.
2. Where the relationship type is represented by a table which resolves a many-to-many relationship type into two or more one-to-many relationship types. Technically this can be a binary (2-way), tertiary (3-way) etc relationship type. An example is an OrderDetails table which models a binary many-to-many relationship type between Orders and Products.
The model below from one of my on-line demos might help you understand how a database is built up of related tables.
The above is the model for the InvoicePDF demo which you'll find in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have difficulty opening the link copy its text (NB, not the link location) and paste it into your browser's address bar.
This little demo file is primarily intended to illustrate how to output a report (the invoice) as a PDF file, but it happens to provide an example of the sort of model which you are trying to build. It also shows how data is input into the table via a form in which there are a number of subforms. In particular note how the invoice details subform is used for inserting data into the table which models the many-to-many relationship type between Invoices and Products.