Database Join Types |
Joins are basic functions of databases that you can use to merge the contents of two different tables and/or databases into a single view that is based on fields that they have in common (that is, the join condition). For more information, refer to About Table and Database Joins.
|
When you are using data from multiple tables and/or multiple databases in your document, they must be joined by using one of the supported database join types. |
Table A
FirstName |
DepartmentID |
---|---|
Joe |
31 |
Jane |
33 |
Mark |
33 |
Mary |
34 |
Dan |
34 |
Donna |
NULL |
Table B
DepartmentID |
DepartmentName |
---|---|
31 |
Sales |
33 |
Engineering |
34 |
Clerical |
35 |
Marketing |
|
In the Database Setup wizard, the available join types are limited to the joins that are supported by the database provider. For example, when you create a database join for an OLEDB database, a single join type of Inner Join is available. To get around this limitation, you can create a separate database connection for each table that you want and then create the join by using the Multi-Database Join page of the Database Setup dialog. |
Related Topics