Why is Zend Framework (Zend_Db_table) rejecting this SQL Query?
- by Michael T. Smith
I'm working on a simple JOIN of two tables (urls and companies). I am using this query call:
print $this->_db->select()->from(array('u' => 'urls'),
array('id', 'url', 'company_id'))
->join(array('c' => 'companies'),
'u.company_id = c.id');…