这是我的zend查询
return $this->fetchRow($this->select()->where('name = ?', $geofence_name) );
我想在我的查询中添加另一个过滤器,因为我想检查另一个条件。
请指导我。
答案 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);