正文 244字数 54,072阅读

whereNull 相当于 is null whereNotNull相当于is not null
Run code
Cut to clipboard


    $res = DB::table('lara')->whereNull('uname')->get(); dd($res); $res = DB::table('lara')->whereNotNull('uname')->get(); dd($res);
    Run code
    Cut to clipboard