好吧我还是Zend的新手,试图找到ORM如何为它工作,似乎是一项艰巨的任务(任何人都知道他们在哪里有特定的文件)。除了我想要做的是接受现有的查询并向其添加“AND”子句。只是不确定如何去做,因为我发现的其他例子看起来不像这个,我宁愿避免破坏
$select = $this->select()
->from('offer_term')
->setIntegrityCheck(false)
->joinUsing('term_mapping', 'term_id')
->where('promo_id = ?', $promo_id);
return $this->fetchAll($select);
答案 0 :(得分:1)
尝试:
$select = $this->select()
->from('offer_term')
->setIntegrityCheck(false)
->joinUsing('term_mapping', 'term_id')
->where('promo_id = ?', $promo_id);
->where('name = ?', $name); // WHERE promo_id = $promo_id AND name = $name
return $this->fetchAll($select);
请记住使用manual。
答案 1 :(得分:1)
实际上,一旦你开始理解Zend_db是如何工作的,这真的很容易。
您的查询:
$select = $this->select()
->from('offer_term')
->setIntegrityCheck(false)
->joinUsing('term_mapping', 'term_id')
->where('promo_id = ?', $promo_id);
return $this->fetchAll($select);
你已经在使用select()
对象来执行查询,所以尝试重构这样的事情(我将包括如何处理条件):
$select = $this->select()->setIntegrityCheck(false);
$select->from('offer_term');//if query is inside of a DbTable model the from() can be omitted
$select->joinUsing('term_mapping', 'term_id');
$select->where('promo_id = ?', $promo_id);//Every time you add a where(), select() adds the param using the AND operator
$select->where('something_new = ?', $new_param);//if you need to add a param using OR you can use the orWhere() method.
if (TRUE) {
$select->orWhere('something = ?',$parameter);//This will add an OR WHERE to the query if the condition is true.
}
return $this->fetchAll($select);
在select()
查询中添加 AND 只需向链中添加另一个where()
即可。这可以通过链接原始查询来完成,也可以像我一样使用单独的语句来完成。如果您需要在select()
查询中使用 OR 运算符,则可以使用orWhere()
方法。
您可以根据需要混合链接和单独的语句,这使得添加条件非常简单。
注意: Zend_Db不是ORM,它是表网关和表行模式的实现(我希望我的名字正确)。所以请不要期望完整的ORM功能。
希望这有帮助。