HITEK
Computer Services - Setting Up Tables
This database will contain 3 tables storing the following information
CUSTOMER TABLE
| FIELD NAME | DATA TYPE | OTHER ATTRIBUTES |
| CustomerID | Number | Primary Key Required No duplicates |
| CustomerName | Text | 30 Required |
| Address | Text | 30 Required |
| Town | Text | 30 Required |
| Postcode | Text | 10 |
| Telephone | Text | 12 Required |
| Fax | Text | 12 |
| ContactName | Text | 30 |
COMPUTER TABLE
| FIELD NAME | DATA TYPE | OTHER ATTRIBUTES |
| SerialNo | Text | Primary Key Required No Duplicates |
| CustomerID | Number | Required |
| CPU | Text | Required |
| MemoryMb | Number | Required |
| PurchaseDate | Date/Time | Required Short Date Input Mask |
WARRANTY TABLE
| FIELD NAME | DATA TYPE | OTHER ATTRIBUTES |
| SerialNo | Text | Primary Key Required No Duplicates |
| Warranty Type | Text (Lookup) | Required Lookup (None, NBD, 4 hr onsite, 8 hr onsite) |
| Engineer | Text (Lookup) | Required Lookup (J Sykes, P Taylor) |
| Weekend Access | Yes/No |
How to create a short date input mask
An input mask is a technique in a database to make it easier for the user to enter information and very difficult to enter data in the wrong format. We want dates stored as DD/MM/YYYY e.g. 03/04/2005 (NB. Next task you will need to input all the dates to 2005).

Above is an extract from the computers table - can you see that when a new date is entered the / divisons appear automatically? This is how you do it!
STEP 1 - START THE INPUT MASK WIZARD

You will be asked to save the table - choose YES
STEP 2 - CHOOSE INPUT MASK

| Introduction | Setting up tables | Inputting Data |
| Creating Relationships | Queries, Sorts & Calculations | Reports |
| Graphs |