I'm having trouble to make this query in MongoDB query using PHP syntax.
db.collection.find({
$or: [
{$and : [{X:1}, {X: {$gt: 100}}]},
{$and : [{X:2}, {X: {$lt: 100}}]}
]
});
Note: The real query is more complicated, this is just an example.
I wasn't able to find some examples describing this kind of query in PHP. The best I've come up was this:
$query = array(
'$or' => array (
array( '$and' => array( array ('X'=>1), array ('X' => array('gt' => 100)))
),
array( '$and' => array( array ('X'=>2), array ('X' => array('lt' => 100))))
)
)
);
$this->db->collection->find($query);
But this doesn't work - no results is found.
Obviously we can't remove $and from array because we can't have duplicate keys in PHP array.
I don't want use JavaScript expressions because speed is critical.
UPDATE: As Alexander Azarov pointed in comments my original query can be written differently. So I updated the question so it contains the query so the $and is properly used.

$andhere.{X:1, Y: {$all: [5,6,7]}}should work. – Alexander Azarov Jan 1 '12 at 18:05