Hi,
I ran into a problem while trying to write an sql update query in MS Access 2000.
As you can see in the code I'm trying to update a field in the SummaryResults table using another query.
But I'm getting this error saying "Operation must us an updatable query"
I would appreciate it very much if someone could help me with this.
Code:
UPDATE SummaryResults b
SET b.[calls 9-12] = (select count(a.Time)
FROM [Itemisation] a, SummaryResults b
WHERE
(a.Time>#12/30/1899 09:0:0#) AND
(a.Time<#12/30/1899 12:0:0#) AND
a.UserCLI =b.UserCLI
GROUP BY a.UserCLI, b.UserCLI)