问题
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.
回答1:
I use doctrine with symfony, and this is how I do:
where('a.vertical_id is NULL');
回答2:
Use this code:
->where($qb->expr()->isNull('a.vertical_id'));
Reference:
http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/query-builder.html#the-expr-class
来源:https://stackoverflow.com/questions/5154383/how-to-specify-null-value-as-filter-in-a-doctrine-query