oracle batch update table data (efficiency of the process)

merge into t_product tp
using(select t.IMAA017,t.IMAA001 from t100_product_weight t ) s 
on(tp.PROD_CODE = s.IMAA001) when matched then 
  update set tp.weight = s.IMAA017;

  

Guess you like

Origin www.cnblogs.com/cxw-cm/p/11755786.html