ฉันพยายามรับประวัติการสั่งซื้อของผู้ใช้ใช้แบบสอบถามต่อไปนี้และทำงานได้ดี แต่มันจะส่งคืนทุกคำสั่งที่เกี่ยวข้องกับเขตข้อมูลจากตาราง
$collection = Mage::getModel("sales/order")->getCollection()
->addAttributeToSelect('*')
->addFieldToFilter('customer_id', 400)
->setOrder('created_at', 'desc');
ฉันต้องการดึงข้อมูลเฉพาะฟิลด์ดังนั้นในกรณีของ-> addAttributeToSelect ('*')
used the following code
->addAttributeToSelect(array('created_at','customer_id','increment_id','updated_at','status','entity_id','state'))
แต่ได้รับข้อผิดพลาดเป็น"ไม่สามารถระบุชื่อฟิลด์"