sql >> データベース >  >> RDS >> Oracle

別のテーブルからテーブルを更新するときのパフォーマンスの問題

    マージを使用してみてください。

    merge into old_customer_source t1
    using (select t2.custid, t2.firstname, t2.lastname
             from  new_customer_source t2
          ) t2
     on (t1.custid = t2.custid)
    when matched then
    update set t1.firstname = t2.firstname, 
               t1.lastname = t2.lastname
    ;
    



    1. 自動化されたOracleスキーマ移行ツール

    2. mysql行のデータをphpの列として表示します

    3. 2022年に準備しなければならないSQLServerインタビューの質問トップ50

    4. 2つの列を1つの列に結合SQL