CakePHP order not working

后端 未结 3 1802
清酒与你
清酒与你 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 01:01

    You can use virtualFields

    $this->ChatCategoryImage->virtualFields = array('Frequency' => 'hits/(DATEDIFF(NOW(),created))');
    

    changing the way of order

    $order = array('Frequency' => 'desc');
    

提交回复
热议问题