标签: php mysql database laravel laravel-5
我正在使用这个
$notification = notification::where('department', '=', 1)->get();
获取我数据库中“部门”为1的所有记录(可行)
现在,我想要获取所有既没有“部门”1或0的记录,任何想法,帮助?
答案 0 :(得分:2)
如何使用whereIn或whereNotIn条款?
whereIn
whereNotIn
$notification = notification::whereIn('department', [1, 2])->get();