需求:select * from table where a=1 and (b=2 or c=3)
结合实际业务需求($is)及laravel的when方法
$this->where('a',1)
->when($is,function($query){
$query->where('b',2)
->orWhere('c',3);
});
实际产生语句:select * from table where a=1 and b=2 or c=3
没在文档上找到这个问题的解决方案,求解
HUH函数
守候你守候我
素胚勾勒不出你
精慕HU