如何逐列查找空值?
它不起作用:
$criteria->condition = '`seller_id` IS NULL';
$criteria->addCondition('seller_id IS NULL');
$data= MODEL::model()->find($criteria);
试过了? **seller_id** 是 Yii 中映射的列名,它可能与您数据库中的实际列名不同.
tried this? **seller_id** is the mapped column name in Yii, it may not be same as the actual column name in your database.
这篇关于Yii 条件 <IS NULL>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!