-3

これが私のクエリです:

 $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();

データベース内のすべてを表示します!

4

1 に答える 1