Doctrine 查询在结果中返回额外字段
我有一个教义查询;
$q = Doctrine_Query::create()->select('s.monthly_volume')
->from('SearchVolume s')
->innerJoin('s.Keywords k')
->where('k.group_id = ?',array($group_id));
我只希望它返回结果数组中的monthly_volume 值。它当前返回monthly_volume和id,我不希望它在结果中返回id。
I have a Doctrine query;
$q = Doctrine_Query::create()->select('s.monthly_volume')
->from('SearchVolume s')
->innerJoin('s.Keywords k')
->where('k.group_id = ?',array($group_id));
I just want it to return the monthly_volume value in the result array. It currently returns monthly_volume and id, I don't want it to return the id in result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Doctrine 会自动将主键字段添加到几乎每种类型的水合模式的结果中。
在这种情况下,您想要一个简单的数组并且只选择一个字段,答案是单标量水合模式。像这样使用它:
您应该发现 $monthly_volumes 是一个简单的一维数组,仅包含您想要的值。
Doctrine automatically adds the primary key field to the results in almost every type of hydration mode.
In a case like this where you want a simple array and only have a single field being selected, the answer is the Single Scalar Hydration mode. Use it like this:
You should find that $monthly_volumes is a simple one-dimensional array containing only the value(s) you wanted.