Thursday, November 21, 2013

Magento : AddAttributeToFilter( Contionals - Getting products from the table in magento commerce



AddAttributeToFilter( Contionals - Getting products from the table in magento commerce ADDATTRIBUTETOFILTER CONDITIONALS IN MAGENTO

addAttributeToFilter is a function that can be called on a product collection in Magento. In short, it adds a condition to the WHERE part of the MySQL query used to extract a product collection from the database.




1
2
3
4
$_products = Mage::getModel('catalog/product')->getCollection()
   ->addAttributeToSelect(array('name', 'product_url', 'small_image'))
   ->addAttributeToFilter('sku', array('like' => 'UX%'))
    ->load();




The above code would get a product collection, with each product having it's name, url, price and small image loaded in it's data array. The product collection would be filtered and contain only products that have an SKU starting with UX.
addAttributeToFilter Conditionals
Notice above, I used the LIKE operator There are many more operators in SQL and addAttributeToFilter will accept them all. I include them below as well as a reference for you. Hopefully this will save you some time.
Equals: eq




1
$_products->addAttributeToFilter('status', array('eq' => 1));




Not Equals - neq




1
$_products->addAttributeToFilter('sku', array('neq' => 'test-product'));




Like - like




1
$_products->addAttributeToFilter('sku', array('like' => 'UX%'));




One thing to note about like is that you can include SQL wildcard characters such as the percent sign.
Not Like - nlike




1
$_products->addAttributeToFilter('sku', array('nlike' => 'err-prod%'));




In - in




1
$_products->addAttributeToFilter('id', array('in' => array(1,4,98)));




When using in, the value parameter accepts an array of values.
Not In - nin




1
$_products->addAttributeToFilter('id', array('nin' => array(1,4,98)));




NULL - null




1
$_products->addAttributeToFilter('description', 'null');




Not NULL - notnull




1
$_products->addAttributeToFilter('description', 'notnull');




Greater Than - gt




1
$_products->addAttributeToFilter('id', array('gt' => 5));




Less Than - lt




1
$_products->addAttributeToFilter('id', array('lt' => 5));






Greater Than or Equals To- gteq




1
$_products->addAttributeToFilter('id', array('gteq' => 5));




Less Than or Equals To - lteq




1
$_products->addAttributeToFilter('id', array('lteq' => 5));




addFieldToFilter()
Debugging The SQL Query
There are two ways to debug the query being executed when loading a collection in Magento.




1
2
3
4
5
6
7
// Method 1
Mage::getModel('catalog/product')->getCollection()->load(true);
// Method 2 (Quicker, Recommended)
$collection = Mage::getModel('catalog/product')->getCollection();
echo $collection->getSelect();




Both method 1 and method 2 will print out the query but both will do it in slightly different ways. Method 1 prints the query out as well as loading the products while method 2 will just convert the query object to a string (ie. will print out the SQL). The second method is definitely better as it will be executed much

By PHP with 36 comments

    • Popular
    • Categories
    • Archives