whereNull 相当于 is null
whereNotNull相当于is not null$res = DB::table('lara')->whereNull('uname')->get();
dd($res);
$res = DB::table('lara')->whereNotNull('uname')->get();
dd($res);whereNull 相当于 is null whereNotNull相当于is not null $res = DB::table('lara')->where...
whereNull 相当于 is null
whereNotNull相当于is not null$res = DB::table('lara')->whereNull('uname')->get();
dd($res);
$res = DB::table('lara')->whereNotNull('uname')->get();
dd($res);