This is really getting on my nerves now!
the sql I have is like:
and I'm getting a: Operation must use an updateable query error...
what's going on?
the sql I have is like:
Code:
UPDATE tbl1 SET
tbl1.col1 = (SELECT tbl2.col1
FROM tbl2 INNER JOIN tbl3 ON tbl2.key = tbl3.key
WHERE (tbl2.Key="someValue")
)
WHERE (((tblGPDetails.PracticePostCode)='someValue'));
and I'm getting a: Operation must use an updateable query error...
what's going on?