我有一张comment
桌子和一张comment_edit
桌子,还有olddb_edit
。简化后,相关表如下所示:
CREATE TABLE `olddb_edit` (
edit_id INT NOT NULL,
edit_time INT NOT NULL,
edit_text TEXT NOT NULL,
PRIMARY KEY (edit_id, edit_time)
) ENGINE=InnoDB;
现在我想将内容从另一个数据库迁移到编辑表中,但跳过一些表行,如测试评论。我正在为此使用 CakePHP(实际上是 Phinx)。
通常,这就足够了:
$skippable = array(
12345, 23456, 34567, 45678,
);
$rows = $this->getQueryBuilder()
->select('*')
->from('olddb_comment')
->where(array(
'comment_id NOT IN' => $skippable,
))
->execute()
->fetchAll('assoc')
;
但是一个简单的NOT IN
子句显然不适用于复合主键。
我在想,$skippable
数组应该是这样的:
$skippable = array(
array('id' => 707969, 'time' => 1434462225),
array('id' => 707969, 'time' => 1434462463),
array('id' => 707969, 'time' => 1434462551),
);
然后我将通过 for 循环或其他方式运行 where 子句。但老实说,我什至不知道如何在 vanilla-MySQL 中做到这一点。
可能已经在 SO 上发布了一个解决方案,但我找不到任何解决方案(除了特定于其他应用程序的解决方案)。我猜这个算法不是我的朋友。