$productCollection = Mage::getModel('catalog/product')->getCollection();
Selecting the specific Attribute
$productCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));
Selecting the All Attributes
$productCollection->addAttributeToSelect('*');
Add Filter ...