我正在使用 mongoDB 数据库。我在其中收集了以下格式。
{ name : name1 , area: a , country : c}
{ name : name2 , area: b , country : c}
{ name : name3 , area: a1 , country : c1}
{ name : name4 , area: b1 , country : c1}
我想要像这样的查询
select * from coll where (country =c and area =a) or (country = c1 and area = b1)
在 mongodb 查询中。
我已经阅读了很多文件,但没有找到合适的答案。
所以有知道的请回复。
谢谢