R
Rowena
I am trying to make an update query something like:
UPDATE table1
SET sumValueColumn = sum(ValueColumn)
That gives me the error: You tried to execute a query that does not uncluide
the specified expression sumValueColumn as part of an aggregate function.
I try:
UPDATE table1
SET sumValueColumn = (SELECT sum(ValueColumn) FROM table1)
That gives me the error: Operation must use an updateable query.
I would appreciate any feedback.
Thanks,
UPDATE table1
SET sumValueColumn = sum(ValueColumn)
That gives me the error: You tried to execute a query that does not uncluide
the specified expression sumValueColumn as part of an aggregate function.
I try:
UPDATE table1
SET sumValueColumn = (SELECT sum(ValueColumn) FROM table1)
That gives me the error: Operation must use an updateable query.
I would appreciate any feedback.
Thanks,