To update and append records in one update query, follow these steps:
CAUTION: If you follow the steps in this example, you modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and follow these steps on a copy of the database.
- Start Microsoft Access, and then open the sample database Northwind.mdb.
- Click Shippers in the Database window, and then 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 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 then modify the first
record to:
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 by using the ShipperID field.) Select the following join type,
and then click 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 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, and then modify the Update To row as follows:
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 Yes.
- Open the Shippers1 table in Datasheet view. Note that it contains the
modified record and the new record from the Shippers2 table.