因为我的连接包括一个名为“id”的字段,所以我需要在我的sql期间重命名这个字段名,这样它就不会覆盖我从第一个选中的tabel中的id字段名.
我的查询看起来如下;
$select = new \Zend\Db\sql\Select();
$select->from('websites');
$select->join(array('s' => 'websites_statistics'),'s.website_id = websites.id');
$select->where(array('websites.website' => $website));
$select->order('s.timestamp DESC')->limit(1);
$rowset = $this->tableGateway->selectWith($select);
$row = $rowset->current();
return $row;
因此,’s”id’字段应该重命名为’stat_id’.
提前致谢!
缺口
最佳答案
$select = new \Zend\Db\sql\Select();
$select->from('websites');
->join(array('s' => 'websites_statistics'),'s.website_id = websites.id',array('stat_id' => 's.id')); // <-- here is the alias
->where(array('websites.website' => $website));
->order('s.timestamp DESC')
->limit(1);