这是我的问题:
$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();
显示数据库中的所有内容!
答案 0 :(得分:0)
你的代码应该更像这样..
$comment = ORM::factory('comment')
->where('status', '=', 1)
->group_by('user_id')
->find_all();
查看documentation了解详情。