$lastComments = $this->Comment->find('all', array('fields' => array('Comment.news_id', 'Comment.date', 'Comment.content'),
'group' => array('Comment.news_id, Comment.date'),
'order' => array('Comment.date DESC'))
);
這樣做是爲了得到獨一無二的主題最新評論(1條評論 - 1題)。集團通過ID和按日期
此代碼不處理唯一的ID(唯一主題),我該如何解決這個問題?
獨特不起作用。
$lastComments = $this->Comment->find('all', array('fields' => array('Comment.news_id', 'Comment.date', 'Comment.content'),
'group' => array('Comment.news_id'),
'order' => array('Comment.date DESC'))
);
此代碼將返回唯一的主題,但爲了通過日期不工作:/
我試過之前我貼:/ 有沒有其他想法? 感謝您的回覆。 乾杯。 – JaRo