This should be fairly simple but I think I'm missing something...
I have two tables of similar structure with corresponding data in them (i.e. same number of rows, rows have the same IDs).
The main difference is that one table has objects attached, the other doesn't.
I would like to copy the objects from one table to the other. I expected the following query to work but I get an error...
UPDATE Tab1
SET Tab1.Obj = Tab2.Obj
WHERE Tab1.Site_ref = Tab2.Site_ref
Error: Expression does not evaluate to a column or table name.
Any ideas?