2

要するに、私がする必要があるのは:

  1. テーブル内の重複するX行数
  2. いくつかのフィールドを変更する
  3. 自動インクリメントIDを順番に保持します。

これは私がこれまで行ってきたことです。

$this->db->query("CREATE TEMPORARY TABLE tmpTbl AS SELECT * FROM orders_products WHERE op_order_id = $id");
$temp = $this->getAll('tmpTbl');

## grab the highest id in the orders_products table so we can begin auto_inc after that
$this->db->select_max("op_id");
$max = $this->getAll('orders_products');
## set the id to a counter for the loop
$counter = $max[0]->op_id;

## loop through the results editing fields as needed
foreach ( $temp as $t ) :
  $counter++;
  $this->db->query("UPDATE tmpTbl SET op_id = $counter, op_order_id = $orderId WHERE op_order_id = $id");
endforeach;
$temp = $this->getAll('tmpTbl');

## insert the new duplications into the orders_products table
$this->db->query("INSERT INTO orders_products SELECT * FROM tmpTbl");

## drop the temp table so it is fresh and clean for the next duplication
$this->db->query("DROP TEMPORARY TABLE tmpTbl"); 

私がそれを実行すると、私はこの行に到達します

$this->db->query("INSERT INTO orders_products SELECT * FROM tmpTbl");

そしてそれは私にこのエラーを投げます

Duplicate entry '54' for key 'PRIMARY

INSERT INTO orders_products SELECT * FROM tmpTbl

そもそもカウンターを作成したのは、この問題を解決するためでした。しかし、私は悲しいことに間違っています。

4

1 に答える 1

0

私がすることあなたの場合、ID列を削除することです。INSERTがIDを自動的に生成するようにSELECTから。

INSERT INTO orders_products (column2,column3,etc)
    SELECT column2, column3, etc FROM tmpTbl
于 2012-12-05T00:17:22.303 に答える