方法 說明
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 學(xué)費的總分?jǐn)?shù)
$tuition_total= db('student')->where($where)->sum('tuition');;
$count = count($rs1);//取得記錄集總條數(shù)
jsonStudent(0,$tuition_total,'數(shù)據(jù)返回成功',$count,$rs);
以上這篇tp5 sum某個字段相加得到總數(shù)的例子就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- php數(shù)組函數(shù)序列之a(chǎn)rray_sum() - 計算數(shù)組元素值之和