$goodsShow=Goods::where('product_id','=',$id)->first();这个是查询一个条件呢我想在where里面在增加几个条件可以吗有大神指点一下吗
2 回答
富国沪深
TA贡献1790条经验 获得超9个赞
多条件的话可以这样写:$goodsShow=Goods::where('cate_id','=',$cate_id)->where(function($query){$query->where('status','<','61')->orWhere(function($query){$query->where('status','91');});})->first();这一段其实执行的就是wherecate_id=$cate_idAND(status<61ORstatus=91)
添加回答
举报
0/150
提交
取消