gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 22:44:17 24 4
gpt4 key购买 nike

这是我的 zend 查询

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

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

请指导我。

最佳答案

对于和在哪里

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

对于或在哪里

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

关于zend-framework - 如何在 zend 框架查询中添加另一个过滤条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5563348/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com