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

MySQLの回避エラー1093

    http://bugs.mysql.com/bug.php?にある回避策id =6980 、それは私のために働いたアイテムを返すサブクエリへのエイリアスを作成することです。だから

    delete from table1 where id in 
      (select something from table1 where condition)
    

    に変更されます

    delete from table1 where id in
      (select p.id from (select something from table1 where condition) as p)
    


    1. 壊れたUTF-8エンコーディングの修正

    2. 行データを列に動的に変換するmysqlクエリ

    3. OracleDatabaseClientを段階的にインストールする

    4. MySQL:特定の行の行番号(ランキング)を取得する