これが私のクエリです:
$comment = ORM::factory('comment')
->where('status', '=', 1)
->find_all();
フィールド =user_id
の各コメントを 1 つだけ選択するにはどうすればよいuser_id
ですか?
以下:
$comment = ORM::factory('comment')
->distinct('user_id')
->where('status', '=', 1)
->find_all();
データベース内のすべてを表示します!