MichaelS 在上面提到的线程中给出的答案应该可以正常工作。您收到的错误消息(ORA-38104:无法更新 ON 子句中引用的列:foo.id)表明您正在尝试执行类似于以下的操作:
merge into foo
using (select null from dual)
on (foo.id = bar.id)
when matched then update set foo.id = bar.id, foo.another_field = bar.another_field
when not matched then insert VALUES bar;
由于错误状态,“ON”子句中引用的列无法更新。因此,以下将正常工作:
merge into foo
using (select null from dual)
on (foo.id = bar.id)
when matched then update set foo.another_field = bar.another_field
when not matched then insert VALUES bar;
如果你真的需要更新 foo.id,这里有一个可能的解决方案:How to Avoid ORA-3814 error on merge?
编辑
一种可能的替代方法是执行以下操作:
update foo set row = bar where foo.id = bar.id;
if sql%rowcount = 0 then
insert into foo values bar;
end if;
这应该基本上等同于做与合并语句相同的事情。