mongoDB查找值类型的值类型(特定位置的类型)

时间:2017-02-09 02:37:52

标签: mongodb

This is the example of data field I am working with

我想找到所有的希腊语'在迈阿密'

的餐馆

所以我提交了查询

db.location.find({type:' Greek'},{city:' MIAMI'}) &安培; db.location.find({},{' type':' Greek'' city':' MIAMI'})

但它没有正确过滤....

result

我在这里错过了一个明显的方法吗?

1 个答案:

答案 0 :(得分:0)

您需要将查询的两个术语合并为一个对象:

db.location.find({type: 'Greek', city: 'MIAMI'})