这就是我目前所拥有的:
$query->orderBy('id', 'DESC')
->where('totalColorless', '!=', 0) // currently removes all of these...
->where('totalResidual', '!=', 0) // ...and all of these
->get();
我该怎么做才能删除同时满足两个WHERE标准的行?
答案 0 :(得分:0)
尝试使用“orWhere”:
[...]
->where('totalColorless', '!=', 0)
->orWhere('totalResidual', '!=', 0)
[...]
答案 1 :(得分:0)
我认为您必须在orderBy()
之前和get()
where()