我想找到所有具有某些状态的卡车
所以这就是我这样做的方式
$trucks::TblTrucks::find()
->where(["!=" "status", 13])
->andWhere(["!=" "status", 14])
->andWhere(["!=" "status", 17])
->andWhere(["!=" "status", 2])
以上作品但看起来很乱,所以我想把它重写为
$trucks::TblTrucks::find()
->where(["!=" "status", [13,14, 17,2])
但上述失败。 我哪里错了?或者我如何重写它,包括数组中的所有状态值。
答案 0 :(得分:2)