一个update语句:
update a, b set a.name = b.name where a.id = b.id;
mysql好使,oracle里面就行不通了。
一个update语句:
update a, b set a.name = b.name where a.id = b.id;
mysql好使,oracle里面就行不通了。
oracle不支持这种多表关联更新的语法。
改成
update a set a.name =(select b.name from b where a.id = b.id)
看看可以否