About Table and Database Joins |
Consider the following two tables. The first table lists employee first names and their department IDs. The second table lists department names and the ID associated with each department name. The relational data is the DepartmentID values that are shared by both tables.
FirstName |
DepartmentID |
---|---|
Jack |
31 |
Rennie |
33 |
Mike |
34 |
Susan |
NULL |
DepartmentID |
DepartmentName |
---|---|
31 |
Sales |
33 |
Engineering |
34 |
Clerical |
35 |
Marketing |
Joining tables and databases is accomplished in the Database Setup dialog, where you can specify on what field they are joined. For more information, refer to Database Join Types.
Related Topics