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'})
但它没有正确过滤....
我在这里错过了一个明显的方法吗?答案 0 :(得分:0)
您需要将查询的两个术语合并为一个对象:
db.location.find({type: 'Greek', city: 'MIAMI'})