在mongodb集合中查找文档,其中字段等于给定的整数值

时间:2016-09-14 09:08:35

标签: mongodb mongodb-query

我想找到字段property_id等于-549的所有文档。我试过了:

db.getCollection('CollectionName').find({'property_id' : -549 })

这不会返回带有消息的记录:"提取0条记录。"

但是我看到那里的文件property_id是-549。 我不确定我做错了什么。字段类型为int32。

Here are the first two fields of the document that I am looking to find with the query

1 个答案:

答案 0 :(得分:0)

检查字段名称'property_id'中是否有空格: 尝试

db.getCollection('CollectionName').find({'\uFEFFproperty_id' : -549 })