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

別のテーブルの結果に基づいて更新

    UPDATE per
    SET note_about=nt.note_text
    FROM note nt 
    INNER JOIN #person_membership_promo_ext per
      ON per.person_id=nt.main_ref_id
        and per.membership_type='P'
        and note_id=(select MAX(note_id)from note nt_1
    where nt_1.main_ref_id=per.person_id)
    


    1. Androidのsqliteデータベースに大量のデータを挿入する方法

    2. SQLBETWEEN-値の範囲をスキャンするためのスマートなヒント

    3. mysqlの一時テーブルをクリーンアップするにはどうすればよいですか?

    4. MySQLには時間ベースのトリガーがありますか?