laravel中的whereNull和whereNotNull
发布时间:2020-12-07, 08:18:27 分类:PHP | 编辑 off 网址 | 辅助
正文 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
(支付宝)给作者钱财以资鼓励 (微信)→
暂无评论 »