我有两个表我想在 zend 中编写一个内部连接查询以从表 1 中获取所有记录,其 id 与表 2 id 不匹配
$db = Zend_Db_Table::getDefaultAdapter();
$select = $db->select()->setIntegrityCheck(FALSE);
$select->from('cwi_company','*')->join('cwi_groupinglinks','cwi_company.id <> cwi_groupinglinks.orgId')->where('cwi_company.manage=1')->where('cwi_company.deleteOption=0');
$result =$select->fetchAll();
return $result;