Oracle中如何把一个表的某一字段值赋给另一个关联表的相同字段

 

update a set a.col1=(select b.col1 from b where a.key=b.key)

如:update logship_sys.log_pack_spec b set b.ctn_per_pal=(select a.ctn_per_pal
from chess_prod.pack_spec a where a.item=b.item and a.ccn=b.ccn);

你可能感兴趣的:(oracle)