Magento get just one column value or get multiple column values by name
Only want a particular field?
print_r($collection->getColumnValues('name'));
The team at Magento have even given us some rudimentary filtering capabilities.
print_r($collection->getItemsByColumnValue('name','fieldname'));
