oracle中update与select关联实现思路就是通过两个表的关联字段,之后将结果更新到另外一个表中:sql:update b set a3=(select a3 from a where a.a1=b.b1 and a.a2=b.b2) 备注:使用上边语句,不存在b表中的a表数据不会被更新。