There are many conditions you can use with addFieldToFilter. Examples of conditions are equal, not equal, like, not like, in, not in, null, not null, greater than, less than, greater than equal to, and less than equal to.
protected $_productCollectionFactory;
public function __construct(
\Magento\Catalog\Model\ResourceModel\Product\CollectionFactory $productFactory
) {
$this->_productCollectionFactory = $productFactory;
}
public function getProductCollection()
{
return $this->_productCollectionFactory->create()->addAttributeToSelect('*')->addFieldToFilter('sku’,'test');
}
Equal: eq
Now we use equal to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('status', array('eq' => 1));
// Using the operator
$this->_productCollectionFactory->addFieldToFilter('status', 1);
// Without using the operator
Not Equals – neq
Now we use not equal to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('sku', array('neq' => 'test-product'));
Like – like
Now we use Like to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('sku', array('like' => 'UX%'));
In – in
Now we use In to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('entity_id', array('in' => array(1,4,98)));
Not In – nin
Now we use not In to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('entity_id', array('nin' => array(1,4,98)));
NULL – null
Now we use null to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('description', array('null' => true));
Not NULL – notnull
Now we use not null to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('description', array('notnull' => true));
Greater Than – gt
Now we use greater than to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('entity_id', array('gt' => 5));
Less Than – lt
Now we use less than to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('entity_id', array('lt' => 5));
Greater Than or Equals To- gteq
Now we use greater than to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('entity_id', array('gteq' => 5));
Less Than or Equals To – lteq
Now we use less than equal to filter production collection.
$this->_productCollectionFactory->addFieldToFilter('entity_id', array('lteq' => 5));