Nieuw lid |
|
Hey, ik wil een tabel met een andere table joinen:
public function getAll()
{
$select = $this->select()
->from(array('l' => 'logs'),array('tijd', 'log_id'))
->join(array('l_table' => 'logs_table'),'l.log_id = l_table.id');
return $this->fetchAll($select)->toArray();
}
public function getAll() { $select = $this->select() ->from(array('l' => 'logs'),array('tijd', 'log_id')) ->join(array('l_table' => 'logs_table'),'l.log_id = l_table.id'); return $this->fetchAll($select)->toArray(); }
nu krijg ik volgende error:
Exception information:
Message: Select query cannot join with another table
Exception information: Message : Select query cannot join with another table
Hoe komt dit? :S Want volgens de ZF Reference Guide moet het lukken?
|