这是我的查询:
$comment = ORM::factory('comment')
->where('status', '=', 1)
->find_all();
字段 =user_id
我如何选择每个评论中的一个user_id
?
以下:
$comment = ORM::factory('comment')
->distinct('user_id')
->where('status', '=', 1)
->find_all();
显示数据库中的所有内容!