Hi,
I have an error, "Operation must use an updatable query" when trying to update the query. Any idea?
Is it possible to include sum() in the update query?
any idea? thanx in advance..
An updateable query MUST be displaying only data held in tables.
The presence of ANY summarising function means that is not the case so you can't update.
There are several other situations leading to non-updateable queries, but it sounds like you understand your own problem and just want confirmation.
You can never use something like SUM because if you edit that figure, SQL has no idea how to map your change back to the underlying records. If you've got 2 records with the values 7 and 20, giving a sum of 27, and you change the sum to 26, what does that mean for the two records?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.