我有这个问题:
SELECT
groups.name
categories.name,
categories.label
FROM
groups
JOIN
categories
ON
(categories.group1 = groups.id
OR
categories.group2 = groups.id)
AND
groups.label = :section
AND
categories.active = 1
现在,这是我使用Zend_Db_Select的JOIN,但它给出了数组错误
$select->from($dao, array('groups.name', 'categories.name', 'categories.label'))
->join(array('categories', 'categories.group1 = groups.id OR categories.group2 = groups.id'))
->where('groups.label = ?', $group)
->where('categories.active = 1');
我的错误:
异常信息:
消息:选择查询无法加入 另一张桌子
有谁知道我做错了什么?
更新/解决方案:
我找到了解决方案而不是Eran。我只是在这里发布解决方案,以防其他人遇到像这样的问题。解决方案是:
$db = Zend_Registry::get('db');
$dao = new Default_Model_Db_CategoryDao('db');
$select = $dao->select();
$select->setIntegrityCheck(false)
->from(array('c' => 'categories'), array('name', 'label'))
->join(array('g' => 'groups'), 'c.group1 = g.id OR c.group2 = g.id', 'g.label')
->where('g.label = ?', $group)
->where('c.active = 1');
return $dao->fetchAll($select);
答案 0 :(得分:4)
您正在使用Zend_Db_Table_Select对象。默认情况下,这些启用了完整性检查,无法选择其表外的数据。
您可以通过添加 - >将其关闭在使用它查询之前,setIntegrityCheck(false)到select对象。
您可以在Select API下阅读有关in the manual的更多信息 - >高级用法