CakePHP order not working

后端 未结 3 1804
清酒与你
清酒与你 2021-01-20 00:28

Hi i am using CakePHP version - 2.5.5.

I have a table name chat_ategory_mages I want to get Average number of Frequency Order by Descending. Know about

3条回答
  •  余生分开走
    2021-01-20 00:55

    Your code was lil wrong

        $this->paginate = array(
                       'conditions' => array('ChatCategoryImage.chat_category_id'=>$cetegory_id), 
                       'limit' => 10, 'order' => 'Frequency' => 'DESC');
        $getAllCourses = $this->paginate('ChatCategoryImage');
    

提交回复
热议问题