Answer the question
In order to leave comments, you need to log in
Yii2 - query in controller -> where?
Hi everyone I
have a request:
$query = Product::find()->where(['status' => '1', 'price2' => ' *** '])->addOrderBy('id DESC');
Answer the question
In order to leave comments, you need to log in
->andWhere(['not', ['price2' => null]])
или
->andWhere(['is not', 'price2', null])
Maybe ['like', 'title', $this->title] ?
Check out ModelSearch for examples
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question