简单的说:Tags HABTM Documents
有没有办法找到所有Tags
没有Document
关联的东西?
我从这个开始:
$freeTags = $this->Tag->find('all', array(
'conditions' => array(
),
'contain' => array(
'Document'
),
'recursive' => -1
))
但我不知道如何获得如下查询:
SELECT * FROM tags WHERE id NOT IN (SELECT tag_id FROM documents_tags)
我的 CakePHP 版本是 2.3
编辑:最终的解决方案,Tag
模型中的一种方法
$db = $this->getDataSource();
$subQuery = $db->buildStatement(
array(
'fields' => array('DocumentsTag.tag_id'),
'table' => $db->fullTableName($this->DocumentsTag),
'alias' => 'DocumentsTag',
'limit' => null,
'offset' => null,
'joins' => array(),
'conditions' => null,
'order' => null,
'group' => null
), $this->DocumentsTag
);
$subQuery = ' Tag.id NOT IN (' . $subQuery . ') ';
$subQueryExpression = $db->expression($subQuery);
$conditions[] = $subQueryExpression;
$freeTags = $this->find('all', compact('conditions'));