laravel中where和whereRaw用法及区别

```
whereRaw("DATE(created_at) = '$date'")->get();
print_r($list->toArray());

$list = \DB::table('table')->whereRaw("created_at < updated_at")->get();
print_r($list->toArray());

?>
```

whereRaw()是laravel查询构建器的功能,它将您的输入直接放在SQL查询的where子句中,该函数的输入参数在`插入查询之前将不被处理`

如果将以上代码中的whereRaw改为where则会出错

    A+
发布日期:2021年04月20日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: