Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8578877
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T20:29:35+00:00 2026-06-11T20:29:35+00:00

I am able to run AND and OR boolean conditions on Magento using addFieldToFilter

  • 0

I am able to run AND and OR boolean conditions on Magento using addFieldToFilter and addAttributeToFilter.

But, I am curious about implementing more complex boolean conditions like below:

WHERE (`sku > 5` AND `price` > '10') OR (`name` = 'books')

for AND condition, I have

$collections = Mage::getModel('catalog/product')->getCollection()->addAttributeToSelect('*')
->addFieldToFilter( 'sku', array('gt' => 5 )
->addFieldToFilter('price', array('gt' => 10);

Which translates to the first parenthesis of the WHERE condition:

(`sku` > 5 AND `price` > 10)

I do not know how to proceed from here to express the OR condition

`name` = 'books'

Any help will be appreciated. Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T20:29:36+00:00Added an answer on June 11, 2026 at 8:29 pm

    See my earlier post:

    complex boolean conditions on Magento

    You can create OR by passing an array:

    Mage::getModel('catalog/product')
    ->getCollection()
    ->addFieldToFilter('price', array('gt' => 10))
    ->addAttributeToFilter(
        array(
            array('attribute'=>'firstname', 'like'=>'test%'),
            array('attribute'=>'lastname', 'like'=>'test%'),
        )
    )
    

    Each additional call to addAttributeToFilter() will ANDed, but firstname / lastname will be ORed.

    If you need more complex select statements you can always get the select object from the collection and perform adjustments to the query. Look at Varien_Db_Select for hints 🙂

    $collection->getSelect()->join(..)->orWhere(..);  // etc
    

    You can even debug the query to see if it’s looking ok:

    echo $collection->getSelect()->__toString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to be able to run Junit tests from the command line, but
I would like to be able to run a nose test script which accepts
I'd like to be able to run a command that opens up a git
I am able to run a code to take pictures but the resulting image
Using the following method I am able to run a transaction against an Oracle
I have been able to run my C# .net 3.5 app just fine on
I am not able to run a simple select query with a where clause.
Suddenly I am not able to run my application on an emulator or device
I need to be able to run RegLoadKey() on a remote machine, and it
I need to be able to run an Oracle query which goes to insert

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.