我在mongoDB集合中有一个元素,如下所示。每行的值"abcdefgh"
会发生变化。如何查询以获取"abcdefgh"
字段下存储的对象中具有值_id
的行?
"_id": {
"abcdefgh": {
"w": true,
"r": true
}
答案 0 :(得分:3)
查看$exists运算符,即尝试类似这样的内容
db.yourCollection.find({"_id.abcdefgh": { "$exists": true } })