当我尝试在magento adminhtml中运行sql查询时,它会提供数据,但是我在其他地方遇到了magento错误

This is my code located in app\design\adminhtml\default\default\template\customer\tab\addresses.phtml

    $arrParams = $this->getRequest()->getParams();
    $read = Mage::getSingleton('core/resource')->getConnection('core_read');
    $query = 'SELECT entity_id, parent_id, is_active FROM ' .    Mage::getSingleton('core/resource')->getTableName('customer_address_entity').'
    WHERE parent_id = '.$arrParams['id'];
    $results1 = $read->fetchAll($query);

data is correct but when I try to create new customer in the backend it gives an error

(SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1)

$arrParams['id'] was the problem. It was null at some other location.

Thhanks