我想使用 mongodb 创建一个数据库,我想知道如何查询嵌套实体。例如,假设我们创建了一个数据库,如下所示:
from pymongo import MongoClient
db = client['test_database']
collection = db['test_collection']
dat=[
{ "id":110, "data":{"Country":"ES","Count":64}},
{ "id":112, "data":{"Country":"ES","Count":5}},
{ "id":114, "data":{"Country":"UK","Count":3}}
]
collection.insert(dat)
我们如何查询具有“国家”值“ES”的记录?或者,我们如何查询“Count”小于 6 的记录?