我在Kohana ORM中有一个查询,我需要按客户端进行过滤,这是
client = ORM :: factory('clients')-> orders-> with('commerce')-> where('orders.id','>',12)-> and_where('clients.id' > 12)-> find_all;
这部分工作正常,但是客户端会重复自己,我希望出现最新请求的客户端出现
答案 0 :(得分:0)
在documentation中,您可以找到一个不错的方法:distinct(true)
,但这可能行不通:您从所有表中获取字段。
如果您需要此列表显示更好的方法,请添加模型建模方法,并使用query builder