Getting started with Microsoft Access
Creating, saving, and opening files
Navigating the workspace
After you click [OK] to create a new database, the screen will look like this:
Note the different objects you can create in the database window. Clicking on an object will bring up various options for creating that type of object. For example, if you click on [Forms], you will see two icons in the right side of the window: Create form in Design view, and Create form by using wizard.
As you create objects, they will also be listed in this window under their object type. All of your tables can be accessed by clicking on [Table], and all of your reports by clicking on [Report].
Basic concepts of Access
Each type of object has different uses. Together, they can help organize and manage various kinds of data.
It is very important to think about what kinds of data your database will hold, and how it can be organized, before you try to create your database. Consider which data will go into which table, and what relationships exist between the various data.
Tables
Tables are an essential element to any database. They store all the information you have. It is usually ideal to use a separate table for each kind of information.
Tables are very similar to spreadsheets in terms of how data is entered and how they are organized. An important difference is that each row in a table—each ‘record'—must have a unique identifier. This is called the primary key. The primary key allows Access to distinguish between records that might otherwise be identical, just as license plate numbers identify cars.
Separate tables can be linked by creating relationships between data fields in each table.
Queries
Queries compile data fields from multiple tables into a single table, which can then be accessed by forms. (USE).
Forms
Forms can provide an easy way to view and create records in your tables. A typical data-entry form will have clearly labeled text boxes, buttons, or lists to enter data into a table. Users can easily put data into one of your tables without knowing anything at all about tables or how they work.
You can also create switchboards, which are forms that allow access to forms. A typical switchboard has buttons leading to data-entry forms. This allows users who know nothing at all about Access to make full use of your database.
Reports
Reports allow you to compile and display data from multiple sources.
Relationships
Relationships are a key part of Access's functionality. Creating relationships between data sets allows Access to understand how each part of your database is connected to the rest. Typically, the primary key of one table will be linked to a category in another table.
Now that you've been introduced to some of the basic concepts of Access, try making a database.