oracle数据库要updateA表的数据,条件是A表的a字段等于B表的a字段,请教此update语句如何写。

请说下,oracle数据库要updateA表的数据,条件是A表的a字段等于B表的a字段,请教此update语句如何写。
最新回答
梦幻的心爱

2024-09-14 00:01:22

您好,以下为思路与语法:
1 > update A a set a.column = 更新值 where a.a in (select a from b);
2> update A a set a.column = 更新值 where exists (SELECT 1 FROM B b WHERE 1=1 a.id = b.id) <推荐。性能高于思路①>
吥荟吢庝

2024-09-14 00:07:17

你是想拿B表中的数据更新A表还是仅仅是说A.a=B.a的时候将A表的数据修改
微浅笑°

2024-09-14 00:02:21

update a set a.column=??? where a.a in (select a from b);