I
Ian Sweeney
What is the Access equivalent of
UPDATE table a
FROM table b
SET x = b.y
WHERE a.c = b.d
UPDATE table a
FROM table b
SET x = b.y
WHERE a.c = b.d
The actual query is
UPDATE WardDateTotals INNER JOIN qryManagementCount
ON (WardDateTotals.[Ward name] = qryManagementCount.[Ward
name]) AND (WardDateTotals.Date =
qryManagementCount.Date)
SET WardDateTotals.Management =
qryManagementCount.HowMany;
When I try to run the query I get the error message:
'Operation must use an updateable query.'
-----Original Message-----
UPDATE A , B
SET A.X = B.Y
WHERE A.C = B.D
OR perhaps more efficient...
UPDATE A INNER JOIN B
.