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.

link|improve this question

feedback

1 Answer

up vote 15 down vote accepted

I use doctrine with symfony, and this is how I do:

where('a.vertical_id is NULL');

link|improve this answer
1  
Awesome, works perfectly. Thanks Johannes. – Sid Mar 1 '11 at 12:22
You're welcome :) – Johannes Mar 1 '11 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.