```
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则会出错