ScottishFencer
Technical User
Hi,
Not sure if this is the right place.
I have a table that I want to update. There are a list of IDs that need to be updated from a 0 to a value derived in a select query. I can create a select query that gives me the right data but when I try to turn it into an Update I get the error message "Operation must use an updateable table". This will be becasuse one of the fields is coming from the Select.
In essence what I want to do is:
This seems to be a prett entry level query yet I am banging my head against a brick wall.
Not sure if this is the right place.
I have a table that I want to update. There are a list of IDs that need to be updated from a 0 to a value derived in a select query. I can create a select query that gives me the right data but when I try to turn it into an Update I get the error message "Operation must use an updateable table". This will be becasuse one of the fields is coming from the Select.
In essence what I want to do is:
Code:
UPDATE ID.Table SET ID.Table = ID.SelectQuery
WHERE AssessmentID > 60000
This seems to be a prett entry level query yet I am banging my head against a brick wall.