原生表达式
最后更新于:2022-04-01 15:11:26
有些时候你需要使用原生表达式在查找语句里,这样的表达式会成为字串插入至查找,因此要小心勿建立任何 SQL 注入点。要建立原生表达式,你可以使用 `DB::raw` 方法:
## 使用原生表达式
~~~
$users = DB::table('users')
->select(DB::raw('count(*) as user_count, status'))
->where('status', '<>', 1)
->groupBy('status')
->get();
~~~
';