R
Richard Bond
Hello,
The following query works in ORACLE but when run in ACCESS 2000 returns
"Operation must use an updateable query"
update tab x
set expshare = (select a.exp / b.exp
from tab a, tab b
where b.product = 1
and a.id = x.id
and a.time = b.time)
This is basically joining the table to itself and updating an existing field
based on a calculation on another field.
can anyone help?
regards,
Richard
The following query works in ORACLE but when run in ACCESS 2000 returns
"Operation must use an updateable query"
update tab x
set expshare = (select a.exp / b.exp
from tab a, tab b
where b.product = 1
and a.id = x.id
and a.time = b.time)
This is basically joining the table to itself and updating an existing field
based on a calculation on another field.
can anyone help?
regards,
Richard