Any idea how to represent the following SQL condition for MongoDB

WHERE
     a = 1
AND  b = 2
AND  (c >= 3 OR c IS NULL)
AND  d = 4

Tried this, but seems not working:

{ a:1, b:2, c:{ $in:[ { $gte:3 }, { $exists: false } ] } , d:4 }

This doesn't work since the key 'c' gets overridden:

{ a:1, b:3, $or:[ { c:{ $gte:3 } }, { c:{ $exists:false } } ] , d:4 }

Any help is greatly appreciated

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

I think this is what you're looking for:

{ "a": 1, "b": 2, "$or": [ { "c": { "$gte": 3 } }, { "c": { "$exists": false } } ], "d": 4 }

link|improve this answer
Spot on! Thanks a bunch :-) – user795243 Oct 17 '11 at 12:04
feedback

Your Answer

 
or
required, but never shown