laravel查询php如何获取范围内的最大值
作者:互联网
你好我如何得到分数的最大值,其中列ID范围从3-5开始
示例表
我想获得分数的最大值,其中列ID范围为3-5
, 请帮忙,
到目前为止我做了什么:
$max_scores_table= DB::table('scores_table')
->where('id', '>', 2)
->max('score');
另一个问题是当我在表中有一个小数点
当我使用max()函数时,它得到ID = 5,得分为4.5,而不是ID = 4,值为4.6,tnx提前
解决方法:
尝试使用whereBetween希望它的工作原理:
$max_scores_table= DB::table('scores_table')
->select(DB::raw('MAX(score) FROM scores_table as MaxScore'))
->whereBetween('id', array(3,5))
->where('score', 'MaxScore')
->get();
要么:
$max_scores_table= DB::table('scores_table')
->whereBetween('id', array(3,5))
->max('score')
->get();
标签:php,mysql,laravel,query-builder 来源: https://codeday.me/bug/20190516/1116957.html