This article describes the steps needed to create a table via import from a CSV (Comma Separated Values) file.
The purpose of a database is to store information; the place where data is stored is called a table. A table consists of rows and columns. A row, also called a record, contains information about each item you are tracking in the table. A column, also known as a field, stores each characteristic tracked in the table.
Here is an example of a simple database table, containing company information. The first row, listed in bold, contains the names of the table columns:
Company | Address | City | State | Zip Code | Website |
The Bradshaw Group | 2313 Providence Court | Naperville | IL | 60565 | www.bradshaw.com |
Venture Literary | 8895 Town Center Drive | San Diego | CA | 92122 | www.ventureliterary.com |
Include header information in the first row of your CSV file, as this aids in setting up the columns in the table.
To create a table via import, follow these steps:
- Select Tables from the primary toolbar
- Select Import from the secondary toolbar
- Browse for the CSV file containing information to import
- Check the box ‘first row contains header information’, if the import file contains header information.
- Select Create a new Table
- Fill-in Table name:
- Fill-in the RID Column:
- Click Next
- Check fields that required
- Click Finish
- Select OK