1.whereRaw()
用原生的SQL语句来查询,whereRaw('select * from user') 就和 User::all()方法是一样的效果
2.whereBetween()
查询时间格式
whereBetween('problem_date', ['2016-10-05 19:00:00', '2016-10-05 20:35:10'])
这种可以查到,时间格式类似这种, 查询日期变为2016-10-05 20:35:08,则查不到,或者省略,格式为2016-10-05,则默认从00:00:00开始查找