0

tuple に一意の制約を持つマッピング テーブルがあります(c_id, t_id)

状況を説明するためのサンプル データを次に示します。

id  c_id    t_id  
----------------
1   10      2
2   10      3
3   10      7
4   12      2
5   13      3

t_ids(x,y -> z OR x,y -> x)のマージ関数を作成しました。私のコンテンツ ( c_id) に両方がある場合t_ids、もちろん、次のステートメントを使用して制約に違反しています。

UPDATE mapping_table
SET t_id = '$target_tid'
WHERE t_id = '$t1_id' OR t_id = '$t2_id';

結果は次のようになります。

id  c_id    t_id
----------------
1   10      4
2   10      4       /* violates unique constraint */
3   10      7

今、私はこれを思いつきました:

/* delete one of the duplicate entries */
DELETE FROM mapping_table
WHERE   ( SELECT count(c_id)
          FROM mapping_table
          WHERE t_id = '$t1_id' OR t_id = '$t2_id'
        ) > 1;

/* update the remaining row */
UPDATE mapping_table
SET t_id = '$target_tid'
WHERE t_id = '$t1_id' OR t_id = '$t2_id';

今、私は次のエラーが発生しています:
You can't specify target table 'mapping_table' for update in FROM clause

私の質問は次のとおりです。

  1. ここで何が間違っているのですか?ステートメントはDELETE更新と見なされ、WHERE句で使用できませんか?
  2. これを行うためのより効率的な方法はありますか?
4

3 に答える 3

1

あなたが抱えているエラーは、MySQL の特性です。サブクエリの二重セットでこれを回避できます。

DELETE FROM mapping_table
WHERE  (select *
        from ( SELECT count(c_id)
               FROM mapping_table
               WHERE t_id = '$t1_id' OR t_id = '$t2_id'
             ) > 1
        ) t

ただし、問題を解決するには、最小値を除くすべての ID を削除してください。これもうまくいくと思います:

delete from mapping_table
where id > (select minid from (select min(id) from mapping_table mt2
                               where mt2.c_id = mapping_table.c_id and
                                     mt2.t_id = mapping_table.t_id
                              )
           )

ID のリストを一時テーブルに保存し、それをクエリで使用することもできます。

create temporary table minids as
     select c_id, t_id, min(id) as minid
     from mapping_table
     group by c_id, t_id;

delete from mapping_table
where exists (select 1 from minids
              where mt2.c_id = mapping_table.c_id and
                    mt2.t_id = mapping_table.t_id and
                    mt2.minid > mapping_table.id
             )
于 2013-02-23T17:37:19.473 に答える
0

私はこの解決策を探していました。パフォーマンスはおそらく驚くほど低いですが、少なくとも私は実用的な解決策を見つけました (そして何かを学びました)。

/* actually delete rows that will become duplicate after the update */
DELETE FROM mt1 USING mapping_table AS mt1 WHERE id IN (

    /* sub-query to allow `mapping_table` in the DELETE statement */
    SELECT * FROM (

        /* select ids/rows with one t_id available */
        SELECT id
        FROM mapping_table AS mt2
        WHERE mt2.tag_id = $t1_id AND c_id IN (

            /* select ids/rows with both t_id available */
            SELECT c_id
            FROM mapping_table AS mt3
            WHERE mt3.c_id = mt2.c_id AND mt3.tag_id = $t2_id)

    /* alias needed for every derived table */
    ) as mres
)

/* Update to merge t_ids */
UPDATE mapping_table
SET t_id = '$target_id'
WHERE t_id = '$t1_id' OR t_id = '$t2_id';
于 2013-02-26T21:40:26.070 に答える
0

これを試して

DELETE FROM mapping_table
    WHERE   ( SELECT count(c_id)
      FROM mapping_table
      WHERE t_id = '$t1_id' OR t_id = '$t2_id'
      Having count(c_id) > 1
    );

編集:

更新ステートメントでこれを試してください

 UPDATE mapping_table
 SET t_id = '$target_tid'
WHERE t_id in (select t_id from mapping_table where t_id= '$t1_id' OR t_id = '$t2_id') 
于 2013-02-23T17:26:29.113 に答える