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