Database Join Types |
Joins are basic functions of databases that enable you to merge the contents of two different tables and/or databases into a single view based on a common field or fields between them (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 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 |
|
An inner join is the only join type supported when you are using data from multiple databases. In addition, full outer joins are not supported for Excel, Access, and MySQL databases. |
Related Topics