如何在 Doctrine 查询中指定空值作为过滤器?
我在 Zend 中使用 Doctrine 1.1。我正在尝试编写一个查询,该查询将返回特定列中具有空值的记录。
$q = Doctrine_Query::create()
->select('a.*')
->from('RuleSet a')
->where('a.vertical_id = ?', null);
$ruleset_names_result = $q->execute(array(), Doctrine::HYDRATE_ARRAY);
我在规则集表中有 3 个记录,它们的 Vertical_id 列中有 NULL 值,但查询找不到这些记录。
感谢您的帮助。
席德.
I am using Doctrine 1.1 in Zend. I am trying to write a query that will return records that have a null value in a certain column.
$q = Doctrine_Query::create()
->select('a.*')
->from('RuleSet a')
->where('a.vertical_id = ?', null);
$ruleset_names_result = $q->execute(array(), Doctrine::HYDRATE_ARRAY);
I have three records in the ruleset table which have a NULL value in the vertical_id column yet the query doest not find these.
Appreciate the help.
Sid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将主义与 symfony 结合使用,这就是我的做法:
where('a.vertical_id is NULL');
I use doctrine with symfony, and this is how I do:
where('a.vertical_id is NULL');
如果您使用的是 Symfony 2 及以上版本,可以使用以下代码:
参考:
http:// /docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/query-builder.html#the-expr-class
If you are using Symfony 2 and above, you can use this code:
Reference:
http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/query-builder.html#the-expr-class