查询构造器中的聚合函数
mysql中提供了很实用的聚合函数,laravel中也实现了对应的方法。
// count返回表(符合条件)的记录数 得到的是整型
$num = DB::table('student')->count();
// 返回列中的最大值
$max = DB::table('student')->max('age');
// 返回列中最小值
$min = DB::table('student')->min('age');
// 返回列中的平均值
$avg = DB::table('student')->avg('age');
// 返回列的所有合
$sum = DB::table('student')->sum('age');