Kohana 3.2 ORM - 独特值的样本

时间:2012-06-30 15:31:54

标签: orm kohana-3.2

这是我的问题:

 $comment = ORM::factory('comment')
                  ->where('status', '=', 1)
                  ->find_all();

field = user_id

如何选择user_id中的每条评论中只有一条?

以下内容:

$comment = ORM::factory('comment')
                  ->distinct('user_id')
                  ->where('status', '=', 1)
                  ->find_all();

显示数据库中的所有内容!

1 个答案:

答案 0 :(得分:0)

你的代码应该更像这样..

$comment = ORM::factory('comment')
                  ->where('status', '=', 1)
                  ->group_by('user_id')
                  ->find_all();

查看documentation了解详情。