选择字段不为空的数据
Posted
技术标签:
【中文标题】选择字段不为空的数据【英文标题】:SELECT DATA WHERE FIELD IS NOT NULL 【发布时间】:2013-09-24 13:34:30 【问题描述】:我正在尝试从“reset_code_date”不为空的“用户”表中选择所有数据。 我怎样才能用推进器做到这一点?
现在我有了这个:
$canceledusers = UserQuery::create()->filterByResetCodeDate()->find();
如您所见,现在我选择所有 reset_code_date 为 NULL 的字段。但是如何选择所有不为空的字段?
【问题讨论】:
【参考方案1】:试试这个:
$canceledusers = UserQuery::create()->where('reset_code_date is not null')->find();
【讨论】:
【参考方案2】:$canceledusers = UserQuery::create()
->filterByResetCodeDate(null, \Criteria::ISNOTNULL)
->find();
【讨论】:
以上是关于选择字段不为空的数据的主要内容,如果未能解决你的问题,请参考以下文章