如何同时addAttributeToFilter AND和OR?
我想制作如下所示的过滤器:
(伪代码)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Magento 数据对象来过滤:
You can use Magento data object to filter: