mysql – ZF2如何使用join重命名字段名称

前端之家收集整理的这篇文章主要介绍了mysql – ZF2如何使用join重命名字段名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

因为我的连接包括一个名为“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);
原文链接:https://www.f2er.com/mysql/433439.html

猜你在找的MySQL相关文章