I have a linked table where I need to update a column within an existing row
when I (programmatically) execute an update query referencing a select query it doesn't work but if I execute the same query referencing a table I filled with the query it DOES work. Examples below
I can't find why this is. I made an Access Update query using the Select query and it popped the error "Operation must use an updateable query". I looked that up and got mixed explanations. Does anyone have insight on this? Are there special rules regarding updating a linked table by referencing a select query?
UPDATE Table1, Query1
SET Table1.Filename = Query1.Filename
WHERE (Table1.Client = Query1.Client AND Table1.Id = Query1.Id);
UPDATE Table1, Table2
SET Table1.Filename = Table2.Filename
WHERE (Table1.Client = Table2.Client AND Table1.Id = Table2.Id);