Extract Data from Multiple Tables

In a relational database, information about a single subject can be divided between multiple tables. This allows data to be stored more efficiently.

Consider the following tables. You might need to extract data from the Orders and Customers tables:

Table: Orders
OrderID
Date
CustomerID
Status
Table: Customers
CustomerID
Title
FirstName
LastName
Address1
Address2
Town
Postcode

To extract data from multiple tables, you can use the SubTables parameter.

To extract data from multiple tables, complete the following tasks:

NOTE: These procedures assume that you have completed the steps in Extract Data from a Single Table.