3
怎麼辦查詢:加入Zend框架中使用別名
$name = $this->_dbTable->info('name');
$result = $this->_dbTable->select()->from($name)->setIntegrityCheck(false);
$result->join(array('t' => "$name.tipo")), "t.id = $name.id");
其中「$ name.tipo」是連接表的名稱。