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

SQL:同じ関係で列データを他のテーブルに移動します

    UPDATE users, account_users 
    SET account_users.oauth_token_key=users.oauth_access_key,  
        account_users.oauth_token_secret = users.oauth_access_secret
    WHERE account_users.user_id=users.user_id;
    

    JOINを使用できます MySQLUpdate の構文 。



    1. Access 2016 For Dummies Cheat Sheet

    2. MySQLの不規則なクエリ時間

    3. PHPでutf8mb4文字をutf8に変換します

    4. SQLテーブルのjsonからすべての値を抽出します