ORACLE里没有象sqlserver中
update a
set a.b=b.b
where a.a=b.b
的关联更新只有使用子查询的方法
update a
set a.b = (select b from b where a.a=value)