如何根据oracle中另一个表中的值更新一个表中的字段[重复]
Posted
技术标签:
【中文标题】如何根据oracle中另一个表中的值更新一个表中的字段[重复]【英文标题】:How to update a field in one table based off values in another table in oracle [duplicate] 【发布时间】:2015-02-20 15:31:08 【问题描述】:在 Oracle 中,我试图根据第二个表中字段的计算来更新一个表中的字段,但我似乎无法使用任何语法。
例如,
Update item1 i1, item2 i2
Set i1.min_qty = i2.cases * i2.qty_per_case
Where i1.item_id = i2.item_id
And i1.flag1 = 'Y'
i1.item_id
和 i2.item_id
之间的关系是一对一的。
任何帮助将不胜感激。
【问题讨论】:
【参考方案1】:您需要使用相关的子查询或合并语句:
update item1 i1
set i1.min_qty = (select i2.cases * i2.qty_per_case
from item2 i2
where i1.item_id = i2.item_id)
where i1.flag1 = 'Y';
merge into item1 tgt
using item2 src
on (tgt.item_id = src.item_id)
when matched then
update set tgt.min_qty = src.cases * src.qty_per_case
where tgt.flag1 = 'Y';
注意未经测试。
【讨论】:
今天自己的类似问题***.com/questions/28625110/…以上是关于如何根据oracle中另一个表中的值更新一个表中的字段[重复]的主要内容,如果未能解决你的问题,请参考以下文章
根据 Access DB 中另一个表中的多条记录计算字段的值