我正在使用mongo 2.4。
我有一个包含以下两个条目的集合:
> db.collection.find({domain: "pow.com"})
{ "_id" : ObjectId("577ee9ec6f66304109769855"), "domain" : "pow.com", "mImp" : NumberLong(38), "oImp" : NumberLong(38), "vImp" : NumberLong(120), "date" : "Thu Jul 07 2016 16:46:52 GMT-0700 (PDT)", "id" : NumberLong(3847146) }
{ "_id" : ObjectId("577ef4c44df54be7247eb497"), "domain" : "pow.com", "mImp" : NumberLong(38), "oImp" : NumberLong(38), "vImp" : NumberLong(120), "date" : ISODate("2016-10-01T00:00:00Z"), "id" : NumberLong(3847146) }
我尝试运行这些查询,并且每次都没有返回数据时:
> db.collection.find({"vImp": NumberLong(38)});
> db.collection.find({vImp: NumberLong(38)});
> db.collection.find({vImp: 38});
> db.collection.find(vImp: 38)
我曾尝试在Google周围搜索,但似乎这应该可行...。
最佳答案
我相信您在38岁左右缺少“” 。
在MongoDB Shell版本上:3.0.14
db.users.find({"id":NumberLong("853969028494368768")})
在你的情况下
db.collection.find({"vImp": NumberLong("38")})