Yii2查詢語句使用不等於號

Yii2 Active Record查詢條件使用不等於號,須要使用到html

operator format: [operator, operand1, operand2, ...]yii2

運算符格式: [運算符, 運算對象1, 運算對象2, ...]yii

演示代碼:ide

$details = MovieShows::find()->where(['movie_id'=>$id])
           ->andWhere(['location_id'=>$loc_id])
           ->andWhere(['<>','cancel_date', $date])->all();

從演示的代碼的最後一行代碼,能夠看到第一個元素是運算符號,第二個元素是數據表中的字段,第三個元素是值。spa

文章參考了:code

  1. How to use not equal to inside a Yii2 query
  2. Interface yii\db\QueryInterface
相關文章
相關標籤/搜索