Updating a Table Using an Inner Join
In Microsoft Access, executing a query such as the one provided can return a list of FermentIDs. However, to update a different table with this column using the inner join result, a specific update syntax must be followed.
Unlike in other database systems, Access requires the SET part of the update statement to be placed after the join. Additionally, the SELECT and ORDER BY clauses used to define the inner join result must be omitted.
The correct syntax for the update query is:
UPDATE FERMENT INNER JOIN [BELGIUM BEER] ON FERMENT.FermentName = [BELGIUM BEER].FermentId SET EXAMPLETABLE.FermentColumn = a.FermentColumn
In this query:
By omitting the SELECT and ORDER BY clauses, Access knows that the join itself defines the records to be updated. The SET part then specifies the column in the EXAMPLETABLE table to be updated with the FermentId from the join result.
The above is the detailed content of How to Update a Microsoft Access Table Using an Inner Join?. For more information, please follow other related articles on the PHP Chinese website!