最佳答案
你如何检查一个字段不是空的与雄辩?
我尝试了Model::where('sent_at', 'IS NOT', DB::raw('null'))->...
,但它给出了IS NOT
作为绑定而不是比较。
这是DB::getQueryLog()
对它的解释:
'query' => string 'select * from my_table where sent_at = ? and profile_id in (?, ?) order by created_at desc' (length=101)
'bindings' =>
array (size=3)
0 => string 'IS NOT' (length=6)
1 => int 1
2 => int 4