我有表'peserta'具有结构
- 名称(varchar)
- h1(整数)
- h2(整数)
- h3(整数)
我想选择(h1 + h2 + h3)作为总计,并通过限制上限30递增。什么是正确的查询构建器?
> $rank['rank'] = DB::table('peserta')->select('*', '(n1+n2+n3) as
> total')->limit(30)->orderBy('total', 'asc')->get();
答案 0 :(得分:1)
使用原始查询:
DB::table('peserta')
->select(
'*',
DB::raw('(n1+n2+n3) as > total')
)
->limit(30)
->orderBy('total', 'asc')
->get();
答案 1 :(得分:1)
您可以使用雄辩的selectRaw方法来做到这一点。
$rank['rank'] = DB::table('peserta')
->selectRaw('*, h1 + h2 + h3 as total')
->limit(30)
->orderBy('total', 'asc')
->get();
答案 2 :(得分:1)
DB::table('peserta')
->select('*', DB::raw('(IFNULL(h1,0) + IFNULL(h2,0)) + IFNULL(h3,0) as total'))
->orderBy('total')
->limit(30)
->get();
如果列值之一为空,则我将设置为0,否则,如果h1,h2或h3之一为空,total将为您提供空值。