我正在尝试根据他们的状态来获取所有客户的详细信息,例如收集来自亚利桑那州的所有客户。
代码:
$collection = array();
$collection = Mage::getResourceModel('customer/customer_collection')
->joinAttribute('company', 'customer_address/company', 'default_billing', null, 'left')
->joinAttribute('billing_city', 'customer_address/city', 'default_billing', null, 'left')
->joinAttribute('billing_region', 'customer_address/region', 'default_billing', null, 'left')
->addFieldToFilter('billing_region',$stateName)
->setOrder('billing_city', 'asc');
echo $stateName;
echo $collection->getSelect();
print_r($collection);
return $collection;
现在,当我显示查询并在 sql 中运行它时,它工作正常,但集合没有显示任何内容。
任何帮助,将不胜感激 !!!!