vote up 1 vote down star

While using Doctrine in a Symfony project I've come into the situation where I need to apply a condition and then one of two following conditions (which both happen to be sub-queries). I know of the andWhere() and orWhere() functions, but am having trouble using these to generate things like: WHERE cond1 AND ( cond2 OR cond3)

flag
1  
stackoverflow.com/questions/1049617/… allowed me to do what I wanted. – mattfarmerdotnet Nov 2 at 5:18

3 Answers

vote up 1 vote down

You can do this whith DQL:

$models = Doctrine::getTable('ModelName')
    ->findByDql(
        'field_one = ? AND (field_two = ? OR field_three = ?)',
        array('cond_1','cond_2', 'cond_3')
    );

So $models will be a Doctrine_Collection with all found elements.

link|flag
vote up 0 vote down

I haven't heard of this tool but shouldnt something like

... where cond1 andWhere (cond2 orWhere cond3)

work? or whatever the actual syntax is. feel free to tell me if i'm wrong and i'll delete it and slunk off in a corner ;)

link|flag
vote up 0 vote down

for the cond2 OR cond3 use wherein

where cond1 and wherein cond2 or wherein cond3

hopefully this gets you started

link|flag
This seems to help with the subquery part, but doesn't seem to aid in adding the hierarchy to my AND / OR opperators, right? – mattfarmerdotnet Nov 2 at 4:26

Your Answer

Get an OpenID
or

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