雄辩地选择具有空字符串或空值的行
2022-08-30 21:30:09
尝试使用 orWhereNull
作为第二个子句:
$users = DB::table('users')
->where('col', '=', '')
->orWhereNull('col')
->get();
怎么样:
$user->albums()->whereRaw("NOT col > ''")
这样,您可以同时检查这两个条件