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

SQL挿入?あるデータから別のデータにデータを挿入する

    INSERTの2つの異なるスタイルを混同しています 。

    例と同じ方法を使用するには、次のことを行う必要があります。

    INSERT INTO filenote(clientid, notetype, datetime, notedetails)
    SELECT clientid, 'info','2011-09-29 09:00:00', 'example note'
    FROM clienttable
    WHERE clienttable.clientid in (1,2,3,4,5,6,7,8,9)
    

    またはBETWEENを使用します :

    INSERT INTO filenote(clientid, notetype, datetime, notedetails)
    SELECT clientid, 'info','2011-09-29 09:00:00', 'example note'
    FROM clienttable
    WHERE clienttable.clientid BETWEEN 1 AND 9
    


    1. クエリログを有効にした後のログファイルはどこにありますか?

    2. バージョンdjango-mpttをアップグレードした後、なぜこのデータベース移行エラーが発生するのですか?

    3. デフォルトでは、ORACLE11gの大文字と小文字は区別されません

    4. ドットで区切られた数値シーケンス(バージョン番号など)の順序付け