mongodb查询实练

1、mongodb中如何查询 (a=1 or b=2) and (c=3 or d=4)
//格式:db.collection.find({"$and":[{第一个条件},{第二个条件}]});
//db.collection.find({"$and":[{"$or":[{"a":1},{"b":2}]},{"$or":[{"c":3},{"d":4}]}]});

posted @ 2017-02-24 09:00  N神3  阅读(149)  评论(0编辑  收藏  举报