如何在zend框架查询中添加另一个过滤条件

时间:2011-04-06 08:16:40

标签: zend-framework

这是我的zend查询

return $this->fetchRow($this->select()->where('name = ?', $geofence_name) );

我想在我的查询中添加另一个过滤器,因为我想检查另一个条件。

请指导我。

1 个答案:

答案 0 :(得分:10)

and where

$select = $db->select()
    ->from('products',
        array('product_id', 'product_name', 'price'))
    ->where('price > ?', $minimumPrice)
    ->where('price < ?', $maximumPrice);

or where

$select = $db->select()
     ->from('products',
            array('product_id', 'product_name', 'price'))
     ->where('price < ?', $minimumPrice)
     ->orWhere('price > ?', $maximumPrice);