The information in this article applies to:
- Microsoft Access versions 2.0, 7.0, 97
SUMMARY
Novice: Requires knowledge of the user interface on single-user computers.
In Microsoft Access, you can use an update query to append unique new
records to a table as well as update existing records in the table. For
example, using two tables (Table1 and Table2) in an update query, you can
update older records in Table1 using newer data from Table2 and append to
Table1 any unique new records from Table2.
NOTE: An update query can append and update records only if the tables
contain a unique index that does not have the AutoNumber data type (or
Counter data type in version 2.0).
MORE INFORMATION
The following example demonstrates how to update and append records in one
update query:
- Start Microsoft Access and open the sample database Northwind.mdb (or
NWIND.MDB in version 2.0).
- Select the Shippers table in the Database window, and on the Edit menu,
click Copy.
- On the Edit menu, click Paste. In the Paste Table As dialog box, type
Shippers1 in the Table Name box, and then click OK.
- Repeat step 3, typing Shippers2 in the Table Name box.
- Open the Shippers1 table in Design view, change the ShipperID
field (or Shipper ID field in version 2.0) as follows, and then save
and close the table:
Field Name: ShipperID
Data Type: Number
FieldSize: Long Integer
- Repeat step 5 for the Shippers2 table.
- Open the Shippers2 table in Datasheet view and modify the first
record to be:
Shipper ID: 1
Company Name: Ultimate Speedy Express, Inc.
- Add the following new record, and then save and close the Shippers2
table:
Shipper ID: 4
Company Name: Super-Fast Delivery
- Create a new Select query in Design view based on the Shippers1 and
Shippers2 tables.
- Double-click the join line between Shippers1 and Shippers2 to open
the Join Properties dialog box. (If not created automatically, join
the tables on the ShipperID field.) Select the following join type,
and then choose OK:
Include ALL records from 'Shippers2' and only those records from
'Shippers1' where the joined fields are equal.
- On the Query menu, click Update Query (or Update in version 2.0 and
7.0) to change the Select query to an Update query.
- From the Shippers1 field list, drag the ShipperID, CompanyName and
Phone fields to the query grid (or the Shipper ID and Company Name
fields in version 2.0), and then modify the Update To row as follows:
NOTE: In Microsoft Access 2.0, there is a space in the Shipper ID and
Company Name fields, and there is no Phone field.
Field: ShipperID
Table: Shippers1
Update To: [Shippers2].[ShipperID]
Field: CompanyName
Table: Shippers1
Update To: [Shippers2].[CompanyName]
Field: Phone
Table: Shippers1
Update To: [Shippers2].[Phone]
- On the Query menu, click Run. When you are prompted to confirm the
updates, click OK.
- Open the Shippers1 table in Datasheet view. Note that it contains the
modified record and the new record from the Shippers2 table.
REFERENCES
For more information about update queries, search the Help index for
"update queries."
|