我是MongoDB的新手。当我遇到问题时,我在mongo中尝试了基本的东西。我搜索了它,但找不到任何满意的答案。
我有一个非常简单的名为"用户"有一些人的姓名和年龄。以下是db.users.find()
{ "_id" : ObjectId("566acc0442fea953b8d94a7e"), "name" : "gabriel", "age" : 22 }
{ "_id" : ObjectId("566acc0442fea953b8d94a7f"), "name" : "andy", "age" : 10 }
{ "_id" : ObjectId("566acc1342fea953b8d94a80"), "name" : "henry", "age" : 27 }
{ "_id" : ObjectId("566acc1342fea953b8d94a81"), "name" : "william", "age" : 19 }
{ "_id" : ObjectId("566acc3242fea953b8d94a82"), "name" : "sandra", "age" : 20 }
{ "_id" : ObjectId("566acc3242fea953b8d94a83"), "name" : "tom", "age" : 24 }
现在,我正在尝试对其应用不同的投影。前两个是:
db.users.find({}, {"name":1, "age":1})
{ "_id" : ObjectId("566acc0442fea953b8d94a7e"), "name" : "gabriel", "age" : 22 }
{ "_id" : ObjectId("566acc0442fea953b8d94a7f"), "name" : "andy", "age" : 10 }
{ "_id" : ObjectId("566acc1342fea953b8d94a80"), "name" : "henry", "age" : 27 }
{ "_id" : ObjectId("566acc1342fea953b8d94a81"), "name" : "william", "age" : 19 }
{ "_id" : ObjectId("566acc3242fea953b8d94a82"), "name" : "sandra", "age" : 20 }
{ "_id" : ObjectId("566acc3242fea953b8d94a83"), "name" : "tom", "age" : 24 }
db.users.find({}, {"name":0, "age":0})
{ "_id" : ObjectId("566acc0442fea953b8d94a7e") }
{ "_id" : ObjectId("566acc0442fea953b8d94a7f") }
{ "_id" : ObjectId("566acc1342fea953b8d94a80") }
{ "_id" : ObjectId("566acc1342fea953b8d94a81") }
{ "_id" : ObjectId("566acc3242fea953b8d94a82") }
{ "_id" : ObjectId("566acc3242fea953b8d94a83") }
工作正常,但
db.users.find({}, {"name":0, "age":1})
错误:错误:{ " $ ERR" :"无法规范查询:BadValue Projection不能混合包含和排除。", "代码" :17287 }
失败并发出如上所示的错误。我搜索了如果投影中存在冲突条件可能会出现问题,但我不认为在我的方法调用中有类似的东西。是否有一些规则,如find方法中的字段值应该全部为零或全部为一,但不能同时为两者。请帮忙。
答案 0 :(得分:6)
如果您希望查询仅返回年龄,则您的投影必须仅包含您想要的字段。不是你不想要的人:
addSbtPlugin("com.typesafe.sbt" % "sbt-play-ebean" % "1.0.0")
_id的例外情况,您可以指定不包含它。
<强>结果强>
db.projection.find({}, {_id:0, age:1})
除了排除_id字段外,投影不能同时包含include和exclude规范。在明确包含字段的投影中,_id字段是您可以明确排除的唯一字段。