Answer the question
In order to leave comments, you need to log in
Explain what's wrong with requests?
here is the query
$cat= Category::find()->where(['or',['parrent_category'=>0],['parrent_category'=>null]])->all();
var_dump($cat)
SELECT * FROM `category` WHERE (`parrent_category`=0) OR (`parrent_category` IS NULL)
Answer the question
In order to leave comments, you need to log in
$cat= Category::find()->where(['or',['parrent_category'=>0],['is', 'parrent_category', null]])->all();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question