Yii condition <IS NULL>
问题 How to find row by column with null value? It doesn't work: $criteria->condition = '`seller_id` IS NULL'; 回答1: $criteria->addCondition('seller_id IS NULL'); $data= MODEL::model()->find($criteria); tried this? **seller_id** is the mapped column name in Yii , it may not be same as the actual column name in your database. 来源: https://stackoverflow.com/questions/5349788/yii-condition-is-null