在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完成吗?
非常感谢!
答案 0 :(得分:0)
是否可以使用group by
?
return $this->where('product_image_product', '>=', $id-5)->limit(5)->group_by('product_image_product')->find_all();