如何同时addAttributeToFilter AND和OR?

发布于 2024-10-24 03:26:17 字数 244 浏览 3 评论 0原文

我想制作如下所示的过滤器:
(伪代码)

SELECT * FROM Products WHERE 
   (`attribute_foo` LIKE 'bar' AND `attribute_bar` LIKE 'foo')
OR (`attribute_far` LIKE 'boo');

我知道如何通过提供数组来构造 OR 条件,但不知道两者。

感谢您

I'd like to make filter which looks like this :
(pseudo code)

SELECT * FROM Products WHERE 
   (`attribute_foo` LIKE 'bar' AND `attribute_bar` LIKE 'foo')
OR (`attribute_far` LIKE 'boo');

I know how to construct OR condition by providing an array, but not the both.

thanks you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凤舞天涯 2024-10-31 03:26:17
"from"=>$fromValue, "to"=>$toValue
"like"=>$likeValue
"neq"=>$notEqualValue
"in"=>array($inValues)
"nin"=>array($notInValues)
"eq"=>$equal
"nlike"=>$notlike
"is"=>$is
"gt"=>$greaterthan
"lt"=>$lessthan
"gteq"=>$greterthanequal
"lteq"=>$lessthanequal
"finset"=>$unknown
"date"=>true, "to" => $now

$collection = Mage::getResourceModel('customer/customer_collection')
        ->addNameToSelect()
        ->addAttributeToSelect('email')
        ->addAttributeToSelect('created_at')
        ->addAttributeToSelect('group_id')
        ->addFieldToFilter('entity_id', array('from'=>20, 'to'=>30))
        ->addFieldToFilter('name', array('like'=>'%cindy%'));
"from"=>$fromValue, "to"=>$toValue
"like"=>$likeValue
"neq"=>$notEqualValue
"in"=>array($inValues)
"nin"=>array($notInValues)
"eq"=>$equal
"nlike"=>$notlike
"is"=>$is
"gt"=>$greaterthan
"lt"=>$lessthan
"gteq"=>$greterthanequal
"lteq"=>$lessthanequal
"finset"=>$unknown
"date"=>true, "to" => $now

$collection = Mage::getResourceModel('customer/customer_collection')
        ->addNameToSelect()
        ->addAttributeToSelect('email')
        ->addAttributeToSelect('created_at')
        ->addAttributeToSelect('group_id')
        ->addFieldToFilter('entity_id', array('from'=>20, 'to'=>30))
        ->addFieldToFilter('name', array('like'=>'%cindy%'));
丢了幸福的猪 2024-10-31 03:26:17

您可以使用 Magento 数据对象来过滤:

$product = Mage::getModel('catalog/product')
    ->getCollection()
    ->addAttributeToFilter("attribute_code", $value);

print_r($product->getItems());

You can use Magento data object to filter:

$product = Mage::getModel('catalog/product')
    ->getCollection()
    ->addAttributeToFilter("attribute_code", $value);

print_r($product->getItems());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文