Kohana 3.0:如何获取不同的条目?

发布于 2024-12-03 10:17:07 字数 378 浏览 0 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆之渊 2024-12-10 10:17:07

它可以使用group by吗?

return $this->where('product_image_product', '>=', $id-5)->limit(5)->group_by('product_image_product')->find_all();

Does it work using a group by?

return $this->where('product_image_product', '>=', $id-5)->limit(5)->group_by('product_image_product')->find_all();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文