2011-04-06 70 views
3

添加其他過濾條件這是我的Zend查詢如何在Zend框架查詢

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

,我想添加其他過濾器在我的查詢,因爲我想看看另一種情況。

請指導我。

回答

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);