Arjun
12/22/2019 - 7:10 PM

Find Count of Orders from Specific Country

$total = Mage::getModel('sales/order')->getShippingAddress()->getCollection() // changes it to getBillingAddress if you want to filter it from billing address
->addFieldToFilter('country_id', array('eq'=>'SA'))
->getSize();