Querying Two Databases with SQLLast reviewed: October 31, 1994Article ID: Q48151 |
SUMMARYYou can query two databases that share field types through the SQL interface of Q+E by performing the following three steps:
ExampleTo select the first name, last name, and address information from databases ADDR.DBF and EMP.DBF, perform the following query under the SQL interface:
SELECT emp.first_name, emp.last_name, addr.street, addr.city_state FROM c:\qe\emp.dbf,c:\qe\addr.dbf WHERE emp.number=addr.numberThis procedure can also be performed by the using the menus.
|
KBCategory: kbother
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |