您好,登錄后才能下訂單哦!
這篇文章主要介紹tp5中如何使用sum實現(xiàn)某個字段相加得到總數(shù),文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
方法 說明
count 統(tǒng)計數(shù)量,參數(shù)是要統(tǒng)計的字段名(可選)
max 獲取最大值,參數(shù)是要統(tǒng)計的字段名(必須)
min 獲取最小值,參數(shù)是要統(tǒng)計的字段名(必須)
avg 獲取平均值,參數(shù)是要統(tǒng)計的字段名(必須)
sum 獲取總分,參數(shù)是要統(tǒng)計的字段名(必須)
用法示例:
獲取用戶數(shù):
Db::table(‘think_user')->count(); // 助手函數(shù) db(‘user')->count();
或者根據(jù)字段統(tǒng)計:
Db::table(‘think_user')->count(‘id'); // 助手函數(shù) db(‘user')->count(‘id');
獲取用戶的最大積分:
Db::table(‘think_user')->max(‘score'); // 助手函數(shù) db(‘user')->max(‘score');
獲取積分大于0的用戶的最小積分:
Db::table(‘think_user')->where(‘score>0')->min(‘score'); // 助手函數(shù) db(‘user')->where(‘score>0')->min(‘score');
獲取用戶的平均積分:
Db::table(‘think_user')->avg(‘score'); // 助手函數(shù) db(‘user')->avg(‘score');
統(tǒng)計用戶的總成績:
Db::table(‘think_user')->sum(‘score'); // 助手函數(shù) db(‘user')->sum(‘score');
案例
//統(tǒng)計字段tuition 學費的總分數(shù) $tuition_total= db('student')->where($where)->sum('tuition');; $count = count($rs1);//取得記錄集總條數(shù) jsonStudent(0,$tuition_total,'數(shù)據(jù)返回成功',$count,$rs);
以上是“tp5中如何使用sum實現(xiàn)某個字段相加得到總數(shù)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。