萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> 解析mysql與Oracle update的區別

解析mysql與Oracle update的區別

本篇文章是對mysql與Oracle update的區別進行了詳細的分析介紹,需要的朋友參考下  

update :單表的更新不用說了,兩者一樣,主要說說多表的更新

復制代碼 代碼如下:       
Oracle> Oracle的多表更新要求比較嚴格,所以有的時候不是很好寫,我們可以試試Oracle的游標
        update (
        select t.charger_id_ new_charger_id_
        from t_cus_year_status t
        left join t_customer_infos cus on cus.id_ = t.cus_id_
        where....
        ) n  set  n.new_charger_id_ =6;

 

復制代碼 代碼如下:
mysql>
      update t_cus_year_status t
      left join t_customer_infos cus on cus.id_ = t.cus_id_
      set t.charger_id_  =6
      where......;
copyright © 萬盛學電腦網 all rights reserved