0
數值我嘗試根據文檔中CakePHP的計算數值。無論我嘗試,我只接收行的此列和數量沒有數值的總和。計數查詢CakePHP的
查詢在我的文章型號:
我試着算在我的數據庫中的所有文章hitcounts的數量。該hitcount是一個INT領域:
$total_articles = $this->find('count', array('fields' => 'Article.hitcount'));
//返回3,排在數據庫
我嘗試從一個特定的用戶
$hitcountUser = $this->find('count', array('fields' => 'Article.hitcount', 'conditions' => array('Article.user_id' => $user)));
算hitcounts數量總數//返回3,數據庫中的總行數,所有文章都由此用戶發佈。
如何我總結的數值在Article.hitcount?我用Google搜索,但找不到答案。
關於計算器搜索什麼? ;-) http://stackoverflow.com/questions/4971148/sum-function-in-cakephp-query – nIcO