yii2使用不等于号进行查询
时间:2020-02-26 14:32
Yii2 Active Record查询条件使用不等于号,需要使用到 operator format: [operator, operand1, operand2, ...] 运算符格式: [运算符, 运算对象1, 运算对象2, ...] (推荐教程:yii框架) 演示代码: 从演示的代码的最后一行代码,可以看到第一个元素是运算符号,第二个元素是数据表中的字段,第三个元素是值。 更多编程相关内容,请关注gxlsystem.com编程入门栏目! 以上就是yii2使用不等于号进行查询的详细内容,更多请关注gxlsystem.com其它相关文章!$details = MovieShows::find()->where(['movie_id'=>$id])
->andWhere(['location_id'=>$loc_id])
->andWhere(['<>','cancel_date', $date])->all();