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