Kohana 3.0:如何获取不同的条目?
在 Kohana 查询中,我只需要检索一个具有相同 id 的元素。 我在模型中有一个方法:
public function next_products_images($id)
{
return $this->where('product_image_product', '>=', $id-5)->limit(5)->find_all();
//for taking the previous five product pictures
}
但问题是,从该方法生成的所有上述结果中,我只需要具有“product_image_product”不同的结果。这可以使用 Kohana ORM 来完成吗?
多谢!
In a Kohana query, I need to retrieve only one element having the same id.
I have a method in the model:
public function next_products_images($id)
{
return $this->where('product_image_product', '>=', $id-5)->limit(5)->find_all();
//for taking the previous five product pictures
}
but the problem is that, from all the above results, generated by the method, I need to have only the ones that have "product_image_product" distinct. Can this be done using Kohana ORM?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可以使用
group by
吗?Does it work using a
group by
?