标签:最小 聚合函数 count max count() 最小值 平均数 value ice
laravel 查询
->first()//1条记录
->value('name')//1条记录中的1个字段
->get()//所有记录
->pluck('name')//所有记录中的1个字段
->count()//数量
->max('price')//最大值
->max('price')//最小值
->avg('price')//求平均数
->sum('price')//求和
->count()//判断数量>0
->exists()//存在
->doesntExist()//不存在
标签:最小 聚合函数 count max count() 最小值 平均数 value ice
原文地址:https://www.cnblogs.com/mg007/p/11996930.html