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

时间:2011-09-08 09:47:40

标签: php kohana kohana-3 kohana-orm 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完成吗?

非常感谢!

1 个答案:

答案 0 :(得分:0)

是否可以使用group by

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