我在MongoDB上插入了以下内容。
db.country.insert({
"name":{"common":"Madrid"},
"currency":["EUR"],
"languages":{"mad":"Madrid","spa":"Spanish"},
"region":"Europe"
})
如果Madrid
位于languages
中且带有find
,我想找到该条目,但是我不知道如何执行这样的查询。我一直在寻找它,但没有找到适合我的解决方案。