时间:2022-12-05 12:54:30 | 栏目:PHP代码 | 点击:次
有一些sql语句比较复杂,用构造器还不如直接用sql来的方便,我们在laravel中使用原生语句,首先要在开头use DB,然后:
$arr = DB::select("select id,sum(parents+1) as total_people from orders where game_id=6 and pay_status=1 and hotel_id=5");
接下来,我们程序里怎么获取到查询到的值呢?
查询到的是一个数组,但是里面的内容属于对象,我们要这么调用:
$arr[0]->total_people;