Magento add order by to collection

Magento add order by to collection : You can simply add the order in magento collection
by adding the –>setOrder(field_name, ASC_DESC); as below

$collection = Mage::getModel('test/test')
->getCollection()
->setOrder('id', 'DESC');

The above example will sort the collection in descending order by id.


Advertisements

Add Comment

📖 Read More