分类: NOSQL
2014-03-04 10:50:56
点击(此处)折叠或打开
db.testColl.find({"person.level":7});
db.testColl.find({"person.ccc.ccc3":56});
db.testColl.find({"person":{"$elemMatch":{"level":5}}});
可以查出结果db.testColl.find({"person":{"$elemMatch":{"ccc":{"$elemMatch":{"ccc3":56}}}}});
无法查出结果
db.testColl.find({"person":{"$elemMatch":{"ccc":{"ccc3":56,"fff3":78}}}});
db.testColl.find({"person":{"$elemMatch":{"ccc.ccc3":56}}});