-3
這裏的樣本是我的查詢:Kohana的ORM 3.2 - 特有的價值觀
$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();
顯示一切都在數據庫!
你想做什麼? 1.顯示每個user_id的最新評論。 2.爲單個user_id選擇特定註釋。 3.想知道如何將參數傳遞到模型中以選擇特定的記錄。 – MrP